diff --git a/X10D/src/BooleanExtensions/BooleanExtensions.cs b/X10D/src/BooleanExtensions/BooleanExtensions.cs
index 262133f..710dcf3 100644
--- a/X10D/src/BooleanExtensions/BooleanExtensions.cs
+++ b/X10D/src/BooleanExtensions/BooleanExtensions.cs
@@ -16,7 +16,7 @@ namespace X10D.BooleanExtensions
{
return BitConverter.GetBytes(value);
}
-
+
///
/// Converts the current Boolean value to the equivalent 8-bit unsigned integer.
///
@@ -43,7 +43,7 @@ namespace X10D.BooleanExtensions
{
return value ? 1 : 0;
}
-
+
///
/// Converts the current Boolean value to the equivalent decimal number.
///
diff --git a/X10D/src/ComparableExtensions/ComparableExtensions.cs b/X10D/src/ComparableExtensions/ComparableExtensions.cs
index 659f8ce..1ccecd9 100644
--- a/X10D/src/ComparableExtensions/ComparableExtensions.cs
+++ b/X10D/src/ComparableExtensions/ComparableExtensions.cs
@@ -48,7 +48,7 @@ namespace X10D.ComparableExtensions
{
return actual.CompareTo(lower) > 0 && actual.CompareTo(upper) < 0;
}
-
+
///
/// Returns the current value clamped to the inclusive range of and .
///
diff --git a/X10D/src/Endianness.cs b/X10D/src/Endianness.cs
index 8b7202e..92397f0 100644
--- a/X10D/src/Endianness.cs
+++ b/X10D/src/Endianness.cs
@@ -9,7 +9,7 @@ namespace X10D
{
[Description("The value should be read as though it uses little endian encoding.")]
LittleEndian,
-
+
[Description("The value should be read as though it uses big endian encoding.")]
BigEndian
}
diff --git a/X10D/src/Int16Extensions/Int16Extensions.cs b/X10D/src/Int16Extensions/Int16Extensions.cs
index 832bbe0..fce9df0 100644
--- a/X10D/src/Int16Extensions/Int16Extensions.cs
+++ b/X10D/src/Int16Extensions/Int16Extensions.cs
@@ -21,7 +21,7 @@ namespace X10D.Int16Extensions
{
return DateTimeOffset.FromUnixTimeMilliseconds(value);
}
-
+
///
/// Converts a Unix time expressed as the number of seconds that have elapsed since 1970-01-01T00:00:00Z to a
/// value.
@@ -35,7 +35,7 @@ namespace X10D.Int16Extensions
{
return DateTimeOffset.FromUnixTimeSeconds(value);
}
-
+
///
/// Returns the current 16-bit signed integer value as an array of bytes.
///
diff --git a/X10D/src/Int32Extensions/Int32Extensions.cs b/X10D/src/Int32Extensions/Int32Extensions.cs
index 7580e22..ea11349 100644
--- a/X10D/src/Int32Extensions/Int32Extensions.cs
+++ b/X10D/src/Int32Extensions/Int32Extensions.cs
@@ -21,7 +21,7 @@ namespace X10D.Int32Extensions
{
return DateTimeOffset.FromUnixTimeMilliseconds(value);
}
-
+
///
/// Converts a Unix time expressed as the number of seconds that have elapsed since 1970-01-01T00:00:00Z to a
/// value.
@@ -35,7 +35,7 @@ namespace X10D.Int32Extensions
{
return DateTimeOffset.FromUnixTimeSeconds(value);
}
-
+
///
/// Returns the current 32-bit signed integer value as an array of bytes.
///
diff --git a/X10D/src/ReflectionExtensions/MemberInfoExtensions.cs b/X10D/src/ReflectionExtensions/MemberInfoExtensions.cs
index 12123ee..daed5e3 100644
--- a/X10D/src/ReflectionExtensions/MemberInfoExtensions.cs
+++ b/X10D/src/ReflectionExtensions/MemberInfoExtensions.cs
@@ -61,7 +61,7 @@ namespace X10D.ReflectionExtensions
return member.GetCustomAttribute(attribute) is not null;
}
-
+
///
/// Retrieves a custom attribute that is decorated by the current member, and projects it into to a new form.
///
diff --git a/X10D/src/ReflectionExtensions/TypeExtensions.cs b/X10D/src/ReflectionExtensions/TypeExtensions.cs
index 1a28d11..f74d99b 100644
--- a/X10D/src/ReflectionExtensions/TypeExtensions.cs
+++ b/X10D/src/ReflectionExtensions/TypeExtensions.cs
@@ -95,7 +95,7 @@ namespace X10D.ReflectionExtensions
{
var exceptionMessage = ExceptionMessages.TypeIsNotInterface;
var formattedMessage = string.Format(CultureInfo.CurrentCulture, exceptionMessage, interfaceType);
-
+
throw new ArgumentException(formattedMessage, nameof(interfaceType));
}
@@ -142,7 +142,7 @@ namespace X10D.ReflectionExtensions
{
var exceptionMessage = ExceptionMessages.TypeIsNotClass;
var formattedMessage = string.Format(CultureInfo.CurrentCulture, exceptionMessage, value);
-
+
throw new ArgumentException(formattedMessage, nameof(value));
}
@@ -150,7 +150,7 @@ namespace X10D.ReflectionExtensions
{
var exceptionMessage = ExceptionMessages.TypeIsNotClass;
var formattedMessage = string.Format(CultureInfo.CurrentCulture, exceptionMessage, type);
-
+
throw new ArgumentException(formattedMessage, nameof(type));
}