Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,9 @@ public static SpanRuneEnumerator EnumerateRunes(this Span<char> span)
/// Returns an enumeration of lines over the provided span.
/// </summary>
/// <remarks>
/// See the documentation for <see cref="string.ReplaceLineEndings"/> for more information
/// on how newline sequences are detected.
/// It is recommended that protocol parsers not utilize this API. See the documentation
/// for <see cref="string.ReplaceLineEndings"/> for more information on how newline
/// sequences are detected.
/// </remarks>
public static SpanLineEnumerator EnumerateLines(this ReadOnlySpan<char> span)
{
Expand All @@ -397,8 +398,9 @@ public static SpanLineEnumerator EnumerateLines(this ReadOnlySpan<char> span)
/// Returns an enumeration of lines over the provided span.
/// </summary>
/// <remarks>
/// See the documentation for <see cref="string.ReplaceLineEndings"/> for more information
/// on how newline sequences are detected.
/// It is recommended that protocol parsers not utilize this API. See the documentation
/// for <see cref="string.ReplaceLineEndings"/> for more information on how newline
/// sequences are detected.
/// </remarks>
public static SpanLineEnumerator EnumerateLines(this Span<char> span)
{
Expand Down