Skip to content

Commit

Permalink
Update docxml comments on BeInRange
Browse files Browse the repository at this point in the history
It wasn't clear whether the values where inclusive or exclusive
  • Loading branch information
andrewlock authored and jnyrup committed Apr 21, 2022
1 parent d6b2d52 commit 09dc7fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/FluentAssertions/Numeric/NumericAssertions.cs
Expand Up @@ -292,10 +292,10 @@ public AndConstraint<TAssertions> BeLessThan(T expected, string because = "", pa
/// Where the range is continuous or incremental depends on the actual type of the value.
/// </remarks>
/// <param name="minimumValue">
/// The minimum valid value of the range.
/// The minimum valid value of the range (inclusive).
/// </param>
/// <param name="maximumValue">
/// The maximum valid value of the range.
/// The maximum valid value of the range (inclusive).
/// </param>
/// <param name="because">
/// A formatted phrase as is supported by <see cref="string.Format(string,object[])"/> explaining why the assertion
Expand Down

0 comments on commit 09dc7fd

Please sign in to comment.