Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRoniOne committed Nov 10, 2021
1 parent 4b4f48c commit 82dd3e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/man/name_changing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/man/workflow_tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

2 comments on commit 82dd3e9

@TheRoniOne
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/48557

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.0 -m "<description of version>" 82dd3e99c3420318e1b1ffe462255677d11f5c4b
git push origin v0.7.0

Please sign in to comment.