Skip to content

Commit

Permalink
Fixed typo in XML doc
Browse files Browse the repository at this point in the history
  • Loading branch information
lpeyr committed Aug 31, 2023
1 parent 1668ec5 commit 18cb19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PeyrSharp.Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public static string DecryptAes(this string encrypted, string key)
/// Uppercases the first letter of a string.
/// </summary>
/// <param name="s">The string to capitalize.</param>
/// <returns>The input string with the first letter uppercased.</returns>
/// <returns>The input string with the first letter lowercased.</returns>
public static string ToLowerAt(this string s) => string.IsNullOrEmpty(s) ? s : char.ToLower(s[0]) + s[1..];

/// <summary>
Expand Down

0 comments on commit 18cb19e

Please sign in to comment.