From 0c36d9d1bd1e0337049ff4cd6426af505153c152 Mon Sep 17 00:00:00 2001 From: Joey Yakimowich-Payne Date: Wed, 9 Sep 2020 04:36:57 -0600 Subject: [PATCH] Fix camelCase --- src/glew/cleansymbols.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/src/glew/cleansymbols.nim b/src/glew/cleansymbols.nim index 0aeb3a4..b56cc48 100644 --- a/src/glew/cleansymbols.nim +++ b/src/glew/cleansymbols.nim @@ -12,6 +12,7 @@ template camelCase(str: string): string = else: res.add(str[i]) i += 1 + res[0] = res[0].toUpperAscii res template lowerFirstLetter(str, rep: string): string =