diff --git a/names/mapper.go b/names/mapper.go index 53db5f81..79add76e 100644 --- a/names/mapper.go +++ b/names/mapper.go @@ -114,7 +114,7 @@ func titleCasedName(name string) string { case upNextChar: upNextChar = false if 'a' <= c && c <= 'z' { - c += 'a' - 'A' + c -= 'a' - 'A' } case c == '_': upNextChar = true