Apply gofmt to all code

This commit is contained in:
Ian Coleman 2017-11-29 12:02:53 +11:00
parent 30c986a8fa
commit 3de563c3dc
3 changed files with 27 additions and 27 deletions

View File

@ -34,9 +34,9 @@ func toCamelInitCase(s string, initCase bool) string {
}
func ToCamel(s string) string {
return toCamelInitCase(s, true);
return toCamelInitCase(s, true)
}
func ToLowerCamel(s string) string {
return toCamelInitCase(s, false);
return toCamelInitCase(s, false)
}