From bf60b0098bf277344118fde0f8265d6e02eda2a2 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sat, 18 Jan 2025 11:36:46 -0500 Subject: [PATCH] Fix XML comment on regex split enumerator --- .../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; } }