Skip to content

Commit

Permalink
Fixed some typos in Validator Extension
Browse files Browse the repository at this point in the history
  • Loading branch information
nschoenberg authored and JeremySkinner committed Jun 29, 2023
1 parent 5382723 commit 0be18d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/FluentValidation/DefaultValidatorExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ public static partial class DefaultValidatorExtensions {
}

/// <summary>
/// Defines a 'less than' validator on the current rule builder using a lambda expression.
/// Defines a 'greater than' validator on the current rule builder using a lambda expression.
/// The validation will succeed if the property value is greater than the specified value.
/// The validation will fail if the property value is less than or equal to the specified value.
/// </summary>
Expand All @@ -822,7 +822,7 @@ public static partial class DefaultValidatorExtensions {
}

/// <summary>
/// Defines a 'less than' validator on the current rule builder using a lambda expression.
/// Defines a 'greater than' validator on the current rule builder using a lambda expression.
/// The validation will succeed if the property value is greater than the specified value.
/// The validation will fail if the property value is less than or equal to the specified value.
/// </summary>
Expand All @@ -845,7 +845,7 @@ public static partial class DefaultValidatorExtensions {
}

/// <summary>
/// Defines a 'less than' validator on the current rule builder using a lambda expression.
/// Defines a 'greater than' validator on the current rule builder using a lambda expression.
/// The validation will succeed if the property value is greater than the specified value.
/// The validation will fail if the property value is less than or equal to the specified value.
/// </summary>
Expand All @@ -865,7 +865,7 @@ public static partial class DefaultValidatorExtensions {
}

/// <summary>
/// Defines a 'less than' validator on the current rule builder using a lambda expression.
/// Defines a 'greater than' validator on the current rule builder using a lambda expression.
/// The validation will succeed if the property value is greater than the specified value.
/// The validation will fail if the property value is less than or equal to the specified value.
/// </summary>
Expand All @@ -888,7 +888,7 @@ public static partial class DefaultValidatorExtensions {
}

/// <summary>
/// Defines a 'greater than' validator on the current rule builder using a lambda expression.
/// Defines a 'greater than or equal to' validator on the current rule builder using a lambda expression.
/// The validation will succeed if the property value is greater than or equal the specified value.
/// The validation will fail if the property value is less than the specified value.
/// </summary>
Expand All @@ -908,7 +908,7 @@ public static partial class DefaultValidatorExtensions {
}

/// <summary>
/// Defines a 'greater than' validator on the current rule builder using a lambda expression.
/// Defines a 'greater than or equal to' validator on the current rule builder using a lambda expression.
/// The validation will succeed if the property value is greater than or equal the specified value.
/// The validation will fail if the property value is less than the specified value.
/// </summary>
Expand Down

0 comments on commit 0be18d7

Please sign in to comment.