Fix camelCase again

This commit is contained in:
Joey Yakimowich-Payne 2020-09-09 05:03:01 -06:00
commit c6a3e51deb

View file

@ -12,7 +12,6 @@ template camelCase(str: string): string =
else:
res.add(str[i])
i += 1
res[0] = res[0].toUpperAscii
res
template lowerFirstLetter(str, rep: string): string =