learning-rust / learning-rust.github.io

Rust Programming Language Tutorials for Everyone!
https://learning-rust.github.io
MIT License
1.48k stars 165 forks source link

camelCase is wrongly represented as CamelCame #44

Closed guibirow closed 4 years ago

guibirow commented 4 years ago

In the guides, You mistakenly suggest throughout the pages that things should be named using CamelCase notation.

But it is wrongly represented, the correct names should be:

camelCase: lower case for first word, Capital for initial of following words. PascalCase: Initial for all words should be uppercase. snake_case: compound word separated by underscore

Despite that, the docs are really good, thanks to put it together.

dumindu commented 4 years ago

Thanks for reporting the issue and feedback. Will check and update in this weekend.