未验证 提交 a45eef28 编写于 作者: K Ken Dale 提交者: GitHub

Remove duplicate length words from xmldoc (#76315)

上级 6583aa1c
......@@ -141,7 +141,7 @@ public ReadOnlySpan<char> AsSpan(int start)
/// </summary>
/// <param name="start">The zero-based starting character position in this <see cref="StringSegment"/>.</param>
/// <param name="length">The number of characters in the span.</param>
/// <returns>A <see cref="ReadOnlySpan{T}"/> with length <paramref name="length"/> that begins at
/// <returns>A <see cref="ReadOnlySpan{T}"/> with <paramref name="length"/> that begins at
/// <paramref name="start"/> in this <see cref="StringSegment"/>.</returns>
/// <exception cref="ArgumentOutOfRangeException">
/// <paramref name="start"/> or <paramref name="length"/> is less than zero, or <paramref name="start"/> + <paramref name="length"/> is
......@@ -387,7 +387,7 @@ public bool EndsWith(string text, StringComparison comparisonType)
/// </summary>
/// <param name="offset">The zero-based starting character position of a substring in this <see cref="StringSegment"/>.</param>
/// <param name="length">The number of characters in the substring.</param>
/// <returns>A <see cref="string"/> that is equivalent to the substring of length <paramref name="length"/> that begins at
/// <returns>A <see cref="string"/> that is equivalent to the substring of <paramref name="length"/> that begins at
/// <paramref name="offset"/> in this <see cref="StringSegment"/></returns>
/// <exception cref="ArgumentOutOfRangeException">
/// <paramref name="offset"/> or <paramref name="length"/> is less than zero, or <paramref name="offset"/> + <paramref name="length"/> is
......@@ -422,7 +422,7 @@ public string Substring(int offset, int length)
/// </summary>
/// <param name="offset">The zero-based starting character position of a substring in this <see cref="StringSegment"/>.</param>
/// <param name="length">The number of characters in the substring.</param>
/// <returns>A <see cref="StringSegment"/> that is equivalent to the substring of length <paramref name="length"/> that begins at <paramref name="offset"/> in this <see cref="StringSegment"/></returns>
/// <returns>A <see cref="StringSegment"/> that is equivalent to the substring of <paramref name="length"/> that begins at <paramref name="offset"/> in this <see cref="StringSegment"/></returns>
/// <exception cref="ArgumentOutOfRangeException">
/// <paramref name="offset"/> or <paramref name="length"/> is less than zero, or <paramref name="offset"/> + <paramref name="length"/> is
/// greater than <see cref="Length"/>.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册