diff --git a/camel.go b/camel.go index 9f3381a..c2f01b1 100644 --- a/camel.go +++ b/camel.go @@ -49,7 +49,7 @@ func toCamelInitCase(s string, initCase bool) string { n += string(v) } } - if v == '_' || v == ' ' || v == '-' { + if v == '_' || v == ' ' || v == '-' || v == '.' { capNext = true } else { capNext = false