From e1b35398eb4cbf7c441387a5ddd24ab4fbd54167 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Fri, 23 Sep 2016 20:37:13 +0100 Subject: [PATCH] Renamed UppercaseFirst string helper to Capitalize. --- src/Generator/Utils/Utils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Utils/Utils.cs b/src/Generator/Utils/Utils.cs index d62ff87d..c555e2d9 100644 --- a/src/Generator/Utils/Utils.cs +++ b/src/Generator/Utils/Utils.cs @@ -70,7 +70,7 @@ namespace CppSharp return obj.Select((t, i) => i == obj.Length - 1 ? t : t + seperator); } - public static string UppercaseFirst(string s) + public static string Capitalize(string s) { // Check for empty string. if (string.IsNullOrEmpty(s))