diff --git a/X10D/src/BooleanExtensions/BooleanExtensions.cs b/X10D/src/BooleanExtensions/BooleanExtensions.cs index a0b3af6..8dd706b 100644 --- a/X10D/src/BooleanExtensions/BooleanExtensions.cs +++ b/X10D/src/BooleanExtensions/BooleanExtensions.cs @@ -14,14 +14,14 @@ public static class BooleanExtensions /// The following example converts the bit patterns of values to arrays. /// /// bool[] values = { true, false }; - /// + /// /// Console.WriteLine("{0,10}{1,16}\n", "Boolean", "Bytes"); /// foreach (var value in values) /// { /// byte[] bytes = value.GetBytes(); /// Console.WriteLine("{0,10}{1,16}", value, bytes.AsString()); /// } - /// + /// /// // The example displays the following output: /// // Boolean Bytes /// // diff --git a/X10D/src/ComparableExtensions/ComparableExtensions.cs b/X10D/src/ComparableExtensions/ComparableExtensions.cs index a8c95ee..cc12eb2 100644 --- a/X10D/src/ComparableExtensions/ComparableExtensions.cs +++ b/X10D/src/ComparableExtensions/ComparableExtensions.cs @@ -27,16 +27,16 @@ public static class ComparableExtensions /// /// int firstValue = 42; /// int secondValue = 15; - /// + /// /// int lower = 0; /// int upper = 20; - /// + /// /// Console.WriteLine($"{firstValue} between {lower} and {upper}?"); /// Console.WriteLine(firstValue.Between(lower, upper)); - /// + /// /// Console.WriteLine($"{secondValue} between {lower} and {upper}?"); /// Console.WriteLine(secondValue.Between(lower, upper)); - /// + /// /// // This will output the following: /// // 42 between 0 and 20? /// // False @@ -93,7 +93,7 @@ public static class ComparableExtensions /// int value = 42; /// int lower = 0; /// int upper = 20; - /// + /// /// int clamped = value.Clamp(lower, upper); /// // clamped will be 20 /// @@ -127,7 +127,7 @@ public static class ComparableExtensions /// /// int first = 5; /// int second = 10; - /// + /// /// bool result = first.GreaterThan(second); /// // result will be False /// @@ -159,7 +159,7 @@ public static class ComparableExtensions /// /// int first = 5; /// int second = 10; - /// + /// /// bool result = first.GreaterThanOrEqualTo(second); /// // result will be False /// @@ -191,7 +191,7 @@ public static class ComparableExtensions /// /// int first = 5; /// int second = 10; - /// + /// /// bool result = first.LessThan(second); /// // result will be True /// @@ -223,7 +223,7 @@ public static class ComparableExtensions /// /// int first = 5; /// int second = 10; - /// + /// /// bool result = first.LessThanOrEqualTo(second); /// // result will be True /// @@ -254,7 +254,7 @@ public static class ComparableExtensions /// /// int first = 5; /// int second = 10; - /// + /// /// int max = first.Max(second); /// // max will be 10 /// @@ -285,7 +285,7 @@ public static class ComparableExtensions /// /// int first = 5; /// int second = 10; - /// + /// /// int min = first.Min(second); /// // min will be 5 /// diff --git a/X10D/src/ComparableExtensions/InclusiveOptions.cs b/X10D/src/ComparableExtensions/InclusiveOptions.cs index 9d86d46..9c00810 100644 --- a/X10D/src/ComparableExtensions/InclusiveOptions.cs +++ b/X10D/src/ComparableExtensions/InclusiveOptions.cs @@ -7,22 +7,22 @@ public enum InclusiveOptions : byte { /// - /// Indicates that the comparison will be exclusive. + /// Indicates that the comparison will be exclusive. /// None = 0, - + /// - /// Indicates that the comparison will treat the upper bound as exclusive. + /// Indicates that the comparison will treat the upper bound as exclusive. /// UpperInclusive = 1, - + /// - /// Indicates that the comparison will treat the lower bound as exclusive. + /// Indicates that the comparison will treat the lower bound as exclusive. /// LowerInclusive = 1 << 1, - + /// - /// Indicates that the comparison will treat both the upper and lower bound as exclusive. + /// Indicates that the comparison will treat both the upper and lower bound as exclusive. /// Inclusive = UpperInclusive | LowerInclusive } diff --git a/X10D/src/EnumExtensions/EnumExtensions.cs b/X10D/src/EnumExtensions/EnumExtensions.cs index 3c84075..55edd93 100644 --- a/X10D/src/EnumExtensions/EnumExtensions.cs +++ b/X10D/src/EnumExtensions/EnumExtensions.cs @@ -6,7 +6,7 @@ public static class EnumExtensions { /// - /// Returns the value which is defined proceeding this value in the enumeration. + /// Returns the value which is defined proceeding this value in the enumeration. /// /// The type of the enumeration. /// The value whose proceeding value to retrieve. @@ -24,7 +24,7 @@ public static class EnumExtensions } /// - /// Returns the value which is defined proceeding this value in the enumeration. + /// Returns the value which is defined proceeding this value in the enumeration. /// /// The type of the enumeration. /// The value whose proceeding value to retrieve. @@ -42,7 +42,7 @@ public static class EnumExtensions } /// - /// Returns the value which is defined preceeding this value in the enumeration. + /// Returns the value which is defined preceeding this value in the enumeration. /// /// The type of the enumeration. /// The value whose preceeding value to retrieve. @@ -64,7 +64,7 @@ public static class EnumExtensions } /// - /// Returns the value which is defined preceeding this value in the enumeration. + /// Returns the value which is defined preceeding this value in the enumeration. /// /// The type of the enumeration. /// The value whose preceeding value to retrieve. diff --git a/X10D/src/EnumerableExtensions/EnumerableExtensions.Int32.cs b/X10D/src/EnumerableExtensions/EnumerableExtensions.Int32.cs index e54feee..3068889 100644 --- a/X10D/src/EnumerableExtensions/EnumerableExtensions.Int32.cs +++ b/X10D/src/EnumerableExtensions/EnumerableExtensions.Int32.cs @@ -11,7 +11,7 @@ public static partial class EnumerableExtensions { return source.Aggregate(1, (current, value) => current * value); } - + /// /// Computes the product of a sequence of values. /// diff --git a/X10D/src/Int16Extensions/Int16Extensions.cs b/X10D/src/Int16Extensions/Int16Extensions.cs index a7bd413..76ef44b 100644 --- a/X10D/src/Int16Extensions/Int16Extensions.cs +++ b/X10D/src/Int16Extensions/Int16Extensions.cs @@ -193,7 +193,7 @@ public static class Int16Extensions } /// - /// Performs a modulo operation which supports a negative dividend. + /// Performs a modulo operation which supports a negative dividend. /// /// The dividend. /// The divisor. diff --git a/X10D/src/Int32Extensions/Int32Extensions.cs b/X10D/src/Int32Extensions/Int32Extensions.cs index 7f00221..2d944af 100644 --- a/X10D/src/Int32Extensions/Int32Extensions.cs +++ b/X10D/src/Int32Extensions/Int32Extensions.cs @@ -245,7 +245,7 @@ public static class Int32Extensions } /// - /// Performs a modulo operation which supports a negative dividend. + /// Performs a modulo operation which supports a negative dividend. /// /// The dividend. /// The divisor. diff --git a/X10D/src/Int64Extensions/Int64Extensions.cs b/X10D/src/Int64Extensions/Int64Extensions.cs index 3e5b7bb..a947c1d 100644 --- a/X10D/src/Int64Extensions/Int64Extensions.cs +++ b/X10D/src/Int64Extensions/Int64Extensions.cs @@ -218,7 +218,7 @@ public static class Int64Extensions } /// - /// Performs a modulo operation which supports a negative dividend. + /// Performs a modulo operation which supports a negative dividend. /// /// The dividend. /// The divisor.