File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/LinkDotNet.StringBuilder Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments