diff --git a/X10D/src/Core/SpanExtensions.cs b/X10D/src/Core/SpanExtensions.cs
index 9139faa..2d2d00d 100644
--- a/X10D/src/Core/SpanExtensions.cs
+++ b/X10D/src/Core/SpanExtensions.cs
@@ -39,13 +39,16 @@ public static class SpanExtensions
#endif
///
- /// Indicate whether a specific enumeration value is found in a span.
+ /// Returns a value indicating whether a specific enumeration value is contained with the current span of elements.
///
- ///
- /// The span to search from.
- /// The enum to search for.
- /// if found, otherwise.
- /// Unexpected enum memory size.
+ /// The type of the elements in .
+ /// The span of elements.
+ /// The value to search for.
+ ///
+ /// if is contained with ; otherwise,
+ /// .
+ ///
+ /// The size of is unsupported.
#if NETSTANDARD2_1
[MethodImpl(MethodImplOptions.AggressiveInlining)]
#else
@@ -57,13 +60,17 @@ public static class SpanExtensions
}
///
- /// Indicate whether a specific enumeration value is found in a span.
+ /// Returns a value indicating whether a specific enumeration value is contained with the current readonly span of
+ /// elements.
///
- ///
- /// The span to search from.
- /// The enum to search for.
- /// if found, otherwise.
- /// Unexpected enum memory size.
+ /// The type of the elements in .
+ /// The readonly span of elements.
+ /// The value to search for.
+ ///
+ /// if is contained with ; otherwise,
+ /// .
+ ///
+ /// The size of is unsupported.
#if NETSTANDARD2_1
[MethodImpl(MethodImplOptions.AggressiveInlining)]
#else