From 29013d8ae50f5bc35427a9155234ccebfa5e227c Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sat, 18 Jan 2025 12:18:14 -0800 Subject: [PATCH] Fix XML comment on regex split enumerator (#111572) --- .../System/Text/RegularExpressions/Regex.EnumerateSplits.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Regex.EnumerateSplits.cs b/src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Regex.EnumerateSplits.cs index e4dbc232118f82..bee35855eed9ad 100644 --- a/src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Regex.EnumerateSplits.cs +++ b/src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Regex.EnumerateSplits.cs @@ -267,9 +267,8 @@ public bool MoveNext() } /// - /// Gets the element at the current position of the enumerator. + /// Gets a for the split at the current position of the enumerator. /// - /// Enumeration has either not started or has already finished. public readonly Range Current => _currentSplit; } }