From 18cb19e93935d3e3b05505ed587be80897f65d0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Peyronnet?= Date: Thu, 31 Aug 2023 10:42:22 +0200 Subject: [PATCH] Fixed typo in XML doc --- PeyrSharp.Extensions/StringExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PeyrSharp.Extensions/StringExtensions.cs b/PeyrSharp.Extensions/StringExtensions.cs index 445f4a7..586500e 100644 --- a/PeyrSharp.Extensions/StringExtensions.cs +++ b/PeyrSharp.Extensions/StringExtensions.cs @@ -196,7 +196,7 @@ public static string DecryptAes(this string encrypted, string key) /// Uppercases the first letter of a string. /// /// The string to capitalize. - /// The input string with the first letter uppercased. + /// The input string with the first letter lowercased. public static string ToLowerAt(this string s) => string.IsNullOrEmpty(s) ? s : char.ToLower(s[0]) + s[1..]; ///