Skip to content

Commit 7a9aebf

Browse files
refactor: update XML docs to replace "LowerBound/UpperBound" with "Start/End" for consistency
1 parent 5e0b156 commit 7a9aebf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CodoMetis.ValueRanges/Core/IUnboundedEndRange.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace CodoMetis.ValueRanges.Core;
44

55
/// <summary>
6-
/// Represents a range that is unbounded on the right: <c>[LowerBound, +∞)</c> or <c>(LowerBound, +∞)</c>.
6+
/// Represents a range that is unbounded on the right: <c>[Start, +∞)</c> or <c>(Start, +∞)</c>.
77
/// </summary>
88
/// <typeparam name="T">The element type of the range.</typeparam>
99
public interface IUnboundedEndRange<T> : IRange<T> where T : struct, IComparable<T>, IEquatable<T>

CodoMetis.ValueRanges/Core/IUnboundedStartRange.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace CodoMetis.ValueRanges.Core;
44

55
/// <summary>
6-
/// Represents a range that is unbounded on the left: <c>(-∞, UpperBound]</c> or <c>(-∞, UpperBound)</c>.
6+
/// Represents a range that is unbounded on the left: <c>(-∞, End]</c> or <c>(-∞, End)</c>.
77
/// </summary>
88
/// <typeparam name="T">The element type of the range.</typeparam>
99
public interface IUnboundedStartRange<T> : IRange<T> where T : struct, IComparable<T>, IEquatable<T>

0 commit comments

Comments
 (0)