Skip to content

Commit ef80888

Browse files
committed
fixed XML comment typos in Range.cs
1 parent 67a07fc commit ef80888

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Code/Light.GuardClauses/Range.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ public RangeFromInfo(T from, bool isFromInclusive)
114114
}
115115

116116
/// <summary>
117-
/// Use this method to create a Range in a fluent style using method chaining.
117+
/// Use this method to create a range in a fluent style using method chaining.
118118
/// Defines the upper boundary as an exclusive value.
119119
/// </summary>
120-
/// <param name="value">The value that indicates the exclusive upper boundary of the resulting Range.</param>
120+
/// <param name="value">The value that indicates the exclusive upper boundary of the resulting range.</param>
121121
/// <returns>A new range with the specified upper and lower boundaries.</returns>
122122
/// <exception cref="ArgumentOutOfRangeException">
123123
/// Thrown when <paramref name="value" /> is less than the lower boundary value.
@@ -128,10 +128,10 @@ public RangeFromInfo(T from, bool isFromInclusive)
128128
public Range<T> ToExclusive(T value) => new Range<T>(_from, value, _isFromInclusive, false);
129129

130130
/// <summary>
131-
/// Use this method to create a Range in a fluent style using method chaining.
131+
/// Use this method to create a range in a fluent style using method chaining.
132132
/// Defines the upper boundary as an inclusive value.
133133
/// </summary>
134-
/// <param name="value">The value that indicates the inclusive upper boundary of the resulting Range.</param>
134+
/// <param name="value">The value that indicates the inclusive upper boundary of the resulting range.</param>
135135
/// <returns>A new range with the specified upper and lower boundaries.</returns>
136136
/// <exception cref="ArgumentOutOfRangeException">
137137
/// Thrown when <paramref name="value" /> is less than the lower boundary value.
@@ -193,7 +193,7 @@ public static class Range
193193
/// Use this method to create a range in a fluent style using method chaining.
194194
/// Defines the lower boundary as an inclusive value.
195195
/// </summary>
196-
/// <param name="value">The value that indicates the inclusive lower boundary of the resulting Range.</param>
196+
/// <param name="value">The value that indicates the inclusive lower boundary of the resulting range.</param>
197197
/// <returns>A value you can use to fluently define the upper boundary of a new range.</returns>
198198
#if (NETSTANDARD2_0 || NETSTANDARD1_0 || NET45 || SILVERLIGHT)
199199
[MethodImpl(MethodImplOptions.AggressiveInlining)]

0 commit comments

Comments
 (0)