JuliaML / TableTransforms.jl

Transforms and pipelines with tabular data in Julia
https://juliaml.github.io/TableTransforms.jl/stable
MIT License
103 stars 15 forks source link

FIX: Use the `titlecase` function in (Upper) Camel Case #192

Closed eliascarv closed 11 months ago

eliascarv commented 11 months ago

Bug description: The uppercasefirst function is not the corect function for Camel Case, the corect is the titlecase function:

julia> uppercasefirst("aBc")
"ABc"

julia> titlecase("aBc")
"Abc"