Skip to content

Commit f46c5ac

Browse files
committed
actual commit
1 parent 14c3bde commit f46c5ac

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Enumerators/Split/SpanSplitStringSplitOptionsWithCountEnumerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public ref struct SpanSplitStringSplitOptionsWithCountEnumerator
2121
public ReadOnlySpan<char> Current { get; internal set; }
2222

2323
/// <summary>
24-
/// Constructs a <see cref="SpanSplitStringSplitOptionsWithCountEnumerator"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.Split(ReadOnlySpan{char}, char, int, StringSplitOptions)"/></strong>.
24+
/// Constructs a <see cref="SpanSplitStringSplitOptionsWithCountEnumerator"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.Split(ReadOnlySpan{char}, char, int, StringSplitOptions, CountExceedingBehaviour)"/></strong>.
2525
/// </summary>
2626
/// <param name="source">The <see cref="ReadOnlySpan{Char}"/> to be split.</param>
2727
/// <param name="delimiter">A <see cref="char"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>

src/Enumerators/Split/SpanSplitWithCountEnumerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace SpanExtensions.Enumerators
2121
public ReadOnlySpan<T> Current { get; internal set; }
2222

2323
/// <summary>
24-
/// Constructs a <see cref="SpanSplitWithCountEnumerator{T}"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.Split{T}(ReadOnlySpan{T}, T, int)"/></strong>.
24+
/// Constructs a <see cref="SpanSplitWithCountEnumerator{T}"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.Split{T}(ReadOnlySpan{T}, T, int, CountExceedingBehaviour)"/></strong>.
2525
/// </summary>
2626
/// <param name="source">The <see cref="ReadOnlySpan{T}"/> to be split.</param>
2727
/// <param name="delimiter">An instance of <typeparamref name="T"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>

src/Enumerators/SplitAny/SpanSplitAnyStringSplitOptionsWithCountEnumerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public ref struct SpanSplitAnyStringSplitOptionsWithCountEnumerator
2121
public ReadOnlySpan<char> Current { get; internal set; }
2222

2323
/// <summary>
24-
/// Constructs a <see cref="SpanSplitAnyStringSplitOptionsWithCountEnumerator"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.SplitAny(ReadOnlySpan{char}, ReadOnlySpan{char}, int, StringSplitOptions)"/></strong>.
24+
/// Constructs a <see cref="SpanSplitAnyStringSplitOptionsWithCountEnumerator"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.SplitAny(ReadOnlySpan{char}, ReadOnlySpan{char}, int, StringSplitOptions, CountExceedingBehaviour)"/></strong>.
2525
/// </summary>
2626
/// <param name="source">The <see cref="ReadOnlySpan{Char}"/> to be split.</param>
2727
/// <param name="delimiters">A <see cref="ReadOnlySpan{Char}"/> with the <see cref="char"/> elements that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>

src/Enumerators/SplitAny/SpanSplitAnyWithCountEnumerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace SpanExtensions.Enumerators
2121
public ReadOnlySpan<T> Current { get; internal set; }
2222

2323
/// <summary>
24-
/// Constructs a <see cref="SpanSplitAnyEnumerator{T}"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.SplitAny{T}(ReadOnlySpan{T}, ReadOnlySpan{T}, int)"/></strong>.
24+
/// Constructs a <see cref="SpanSplitAnyEnumerator{T}"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.SplitAny{T}(ReadOnlySpan{T}, ReadOnlySpan{T}, int, CountExceedingBehaviour)"/></strong>.
2525
/// </summary>
2626
/// <param name="source">The <see cref="ReadOnlySpan{T}"/> to be split.</param>
2727
/// <param name="delimiters">A <see cref="ReadOnlySpan{T}"/> with the instances of <typeparamref name="T"/> that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>

src/Enumerators/SplitSequence/SpanSplitSequenceStringSplitOptionsWithCountEnumerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public ref struct SpanSplitSequenceStringSplitOptionsWithCountEnumerator
2121
public ReadOnlySpan<char> Current { get; internal set; }
2222

2323
/// <summary>
24-
/// Constructs a <see cref="SpanSplitSequenceStringSplitOptionsWithCountEnumerator"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.Split(ReadOnlySpan{char}, ReadOnlySpan{char}, int, StringSplitOptions)"/></strong>.
24+
/// Constructs a <see cref="SpanSplitSequenceStringSplitOptionsWithCountEnumerator"/> from a span and a delimiter. <strong>Only consume this class through <see cref="ReadOnlySpanExtensions.Split(ReadOnlySpan{char}, ReadOnlySpan{char}, int, StringSplitOptions, CountExceedingBehaviour)"/></strong>.
2525
/// </summary>
2626
/// <param name="source">The <see cref="ReadOnlySpan{Char}"/> to be split.</param>
2727
/// <param name="delimiter">An instance of <see cref="ReadOnlySpan{Char}"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>

src/Extensions/ReadOnlySpan/ReadOnlySpanExtensions.Split.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static SpanSplitEnumerator<T> Split<T>(this ReadOnlySpan<T> source, T del
2828
/// <param name="source">The <see cref="ReadOnlySpan{T}"/> to be split.</param>
2929
/// <param name="delimiter">An instance of <typeparamref name="T"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
3030
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
31-
/// /// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
31+
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
3232
/// <returns>An instance of the ref struct <see cref="SpanSplitWithCountEnumerator{T}"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
3333
public static SpanSplitWithCountEnumerator<T> Split<T>(this ReadOnlySpan<T> source, T delimiter, int count, CountExceedingBehaviour countExceedingBehaviour = CountExceedingBehaviour.CutLastElements) where T : IEquatable<T>
3434
{

0 commit comments

Comments
 (0)