Skip to content

Commit bb017ac

Browse files
committed
Minor changes
1 parent 911dea0 commit bb017ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TLibrary/Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static string Capitalize(this string str)
5858
/// </summary>
5959
/// <param name="input">The input string to process.</param>
6060
/// <returns>A new string with the first character converted to uppercase.</returns>
61-
public static string UppercaseFirstChar(string input)
61+
public static string UppercaseFirstChar(this string input)
6262
{
6363
if (string.IsNullOrEmpty(input))
6464
return input;

0 commit comments

Comments
 (0)