Skip to content

Commit a81f6a6

Browse files
committed
docs: Updated docs
1 parent be206f3 commit a81f6a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/LinkDotNet.StringBuilder/ValueStringBuilder.Enumerator.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ internal Enumerator(ReadOnlySpan<char> span)
2424
}
2525

2626
/// <summary>Gets the element at the current position of the enumerator.</summary>
27+
/// <value>The element at the current position of the enumerator. </value>
2728
public readonly char Current
2829
{
2930
[MethodImpl(MethodImplOptions.AggressiveInlining)]
3031
get => span[index];
3132
}
3233

3334
/// <summary>Advances the enumerator to the next element of the span.</summary>
34-
/// <returns>True if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the span.</returns>
35+
/// <returns>True if the enumerator was successfully advancing to the next element; false if the enumerator has passed the end of the span.</returns>
3536
[MethodImpl(MethodImplOptions.AggressiveInlining)]
3637
public bool MoveNext() => ++index < span.Length;
3738
}

0 commit comments

Comments
 (0)