From a45eef2871e7af1988f77d4af073be99068a9b3d Mon Sep 17 00:00:00 2001 From: Ken Dale Date: Wed, 28 Sep 2022 14:20:24 -0400 Subject: [PATCH] Remove duplicate length words from xmldoc (#76315) --- .../Microsoft.Extensions.Primitives/src/StringSegment.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs b/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs index 3bfe322b18a..f321de5ed23 100644 --- a/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs +++ b/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs @@ -141,7 +141,7 @@ public ReadOnlySpan AsSpan(int start) /// /// The zero-based starting character position in this . /// The number of characters in the span. - /// A with length that begins at + /// A with that begins at /// in this . /// /// or is less than zero, or + is @@ -387,7 +387,7 @@ public bool EndsWith(string text, StringComparison comparisonType) /// /// The zero-based starting character position of a substring in this . /// The number of characters in the substring. - /// A that is equivalent to the substring of length that begins at + /// A that is equivalent to the substring of that begins at /// in this /// /// or is less than zero, or + is @@ -422,7 +422,7 @@ public string Substring(int offset, int length) /// /// The zero-based starting character position of a substring in this . /// The number of characters in the substring. - /// A that is equivalent to the substring of length that begins at in this + /// A that is equivalent to the substring of that begins at in this /// /// or is less than zero, or + is /// greater than . -- GitLab