Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docxml comments on BeInRange #1907

Merged
merged 1 commit into from Apr 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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