Skip to content

Commit a5555f9

Browse files
committed
Fix restsharp#1491 - culture param added to xml documentation
1 parent 3ac1738 commit a5555f9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/RestSharp/Extensions/StringExtensions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ public static string ToCamelCase(this string lowercaseAndUnderscoredWord, Cultur
242242
/// Convert the first letter of a string to lower case
243243
/// </summary>
244244
/// <param name="word">String to convert</param>
245+
/// <param name="culture"></param>
245246
/// <returns>string</returns>
246247
public static string MakeInitialLowerCase(this string word, CultureInfo culture) => string.Concat(word.Substring(0, 1).ToLower(culture), word.Substring(1));
247248

0 commit comments

Comments
 (0)