diff --git a/docs/src/man/name_changing.md b/docs/src/man/name_changing.md index 53ebc56..8ba8583 100644 --- a/docs/src/man/name_changing.md +++ b/docs/src/man/name_changing.md @@ -45,7 +45,7 @@ julia> polish_names(ct; style=:camelCase) Currently the only available styles are `:snake_case` and `:camelCase`. The default style is `:snake_case`. -Internally `polish_names` and `polish_names!` both call the `generate_polished_names` function, so if you just need +Internally `polish_names`, `polish_names!` and `polish_names_ROT` all call the `generate_polished_names` function, so if you just need to generate better names for your table, you could call it as follows and manually rename your table. ```jldoctest name_polish diff --git a/docs/src/man/workflow_tips.md b/docs/src/man/workflow_tips.md index ce7f442..a1298da 100644 --- a/docs/src/man/workflow_tips.md +++ b/docs/src/man/workflow_tips.md @@ -132,7 +132,7 @@ julia> df ``` -The complete oposite approach would be to use a function from the ROT (returning original type) variants (e.g. polish_names_ROT) +The complete oposite approach would be to use a function from the ROT (returning original type) variants (e.g. `polish_names_ROT`) that take as input any table, does it's transformation on a copy of it and then returns a new table of the same type of the source table.