Remove "returns" wording from xmldoc

This commit is contained in:
Oliver Booth 2022-04-25 22:26:44 +01:00
parent 433d365a89
commit d1e5dc2c7b
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 2 additions and 4 deletions

View File

@ -58,8 +58,7 @@ public static class StringExtensions
/// </summary> /// </summary>
/// <param name="value">The input string.</param> /// <param name="value">The input string.</param>
/// <returns> /// <returns>
/// Returns <see langword="true" /> if all alpha characters are lowercase, <see langword="false" /> /// <see langword="true" /> if all alpha characters in this string are lowercase; otherwise, <see langword="false" />.
/// otherwise.
/// </returns> /// </returns>
public static bool IsLower(this string value) public static bool IsLower(this string value)
{ {
@ -140,8 +139,7 @@ public static class StringExtensions
/// </summary> /// </summary>
/// <param name="value">The input string.</param> /// <param name="value">The input string.</param>
/// <returns> /// <returns>
/// Returns <see langword="true" /> if all alpha characters are uppercase, <see langword="false" /> /// <see langword="true" /> if all alpha characters in this string are uppercase; otherwise, <see langword="false" />.
/// otherwise.
/// </returns> /// </returns>
public static bool IsUpper(this string value) public static bool IsUpper(this string value)
{ {