Closed sepowitz closed 3 years ago
Hey there,
First off, I just wanted to say how helpful I've found this documentation – it's very thorough and makes for some really readable Elixir code.
One (very small) inconsistency I noticed, was in the Naming: Modules section.
Use CamelCase for modules (keep acronyms like HTTP, RFC, XML uppercase).
CamelCase
I believe it should be:
Use PascalCase for modules (keep acronyms like HTTP, RFC, XML uppercase).
PascalCase
The difference being that:
camelCase uses a lowercased first letter PascalCase uses an uppercase first letter
camelCase
Thanks again! Sebastian
Hi @sepowitz thanks for the input. We've discussed this issue before most recently in #161 and have chosen to follow the Elixir Naming Conventions documentation which uses "CamelCase".
Hey there,
First off, I just wanted to say how helpful I've found this documentation – it's very thorough and makes for some really readable Elixir code.
One (very small) inconsistency I noticed, was in the Naming: Modules section.
Currently it states:
Use
CamelCase
for modules (keep acronyms like HTTP, RFC, XML uppercase).I believe it should be:
Use
PascalCase
for modules (keep acronyms like HTTP, RFC, XML uppercase).The difference being that:
camelCase
uses a lowercased first letterPascalCase
uses an uppercase first letterThanks again! Sebastian