Skip to content

Commit 29013d8

Browse files
authored
Fix XML comment on regex split enumerator (dotnet#111572)
1 parent 8a2e934 commit 29013d8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Regex.EnumerateSplits.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,8 @@ public bool MoveNext()
267267
}
268268

269269
/// <summary>
270-
/// Gets the <see cref="ValueMatch"/> element at the current position of the enumerator.
270+
/// Gets a <see cref="Range"/> for the split at the current position of the enumerator.
271271
/// </summary>
272-
/// <exception cref="InvalidOperationException">Enumeration has either not started or has already finished.</exception>
273272
public readonly Range Current => _currentSplit;
274273
}
275274
}

0 commit comments

Comments
 (0)