1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-10 03:45:41 +00:00

(#15) Remove "Returns" from <returns> for string.Repeat

This commit is contained in:
Oliver Booth 2022-03-06 17:28:12 +00:00
parent b2cf22efdf
commit 3e11a209e7
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634

View File

@ -337,9 +337,7 @@ public static class StringExtensions
/// </summary>
/// <param name="value">The string to repeat.</param>
/// <param name="count">The repeat count.</param>
/// <returns>
/// Returns a <see cref="string" /> whose value is <paramref name="value" /> repeated
/// <paramref name="count" /> times.
/// <returns>A string containing <paramref name="value" /> repeated <paramref name="count" /> times.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="value" /> is <see langword="null" />.</exception>
public static string Repeat(this string value, int count)