Clarify what is meant by CamelCase

The documentation referred to "CamelCase" meaning "upper camel case".  Since the term "camel case" generally means "lower camel case" if "upper" or "lower" is not stated, this could be confusing.  While the example following the instruction clarifies the meaning, I think it is even more clear to specify "UpperCamelCase".
This commit is contained in:
Mike C 2015-02-19 16:01:11 -07:00
parent dff415e0df
commit 3da27b43d3
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ Write a `.inspect()` method so an instance can be easily debugged in the console
#### G6 - Naming Utility Namespaces
Name them in CamelCase, as they are namespaces.
Name them in UpperCamelCase, as they are namespaces.
DO:
```javascript