Apply gofmt to all code
This commit is contained in:
parent
30c986a8fa
commit
3de563c3dc
4
camel.go
4
camel.go
@ -34,9 +34,9 @@ func toCamelInitCase(s string, initCase bool) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func ToCamel(s string) string {
|
func ToCamel(s string) string {
|
||||||
return toCamelInitCase(s, true);
|
return toCamelInitCase(s, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
func ToLowerCamel(s string) string {
|
func ToLowerCamel(s string) string {
|
||||||
return toCamelInitCase(s, false);
|
return toCamelInitCase(s, false)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user