docs: fix spelling of case variants in naming.md
unify variant forms of spelling letter cases (upper-case, uppercase, lower case)
This commit is contained in:
parent
448d9f9f46
commit
693f79e88a
|
@ -7,7 +7,7 @@ See: https://github.com/Microsoft/TypeScript/wiki/Coding-guidelines
|
||||||
|
|
||||||
Classes:
|
Classes:
|
||||||
- Example: `Compiler`, `ApplicationMetadata`
|
- Example: `Compiler`, `ApplicationMetadata`
|
||||||
- Camel case with first letter upper-case
|
- Camel case with first letter uppercase
|
||||||
- In general prefer single words. (This is so that when appending `Proto` or `Factory` the class
|
- In general prefer single words. (This is so that when appending `Proto` or `Factory` the class
|
||||||
is still reasonable to work with.)
|
is still reasonable to work with.)
|
||||||
- Should not end with `Impl` or any other word which describes a specific implementation of an
|
- Should not end with `Impl` or any other word which describes a specific implementation of an
|
||||||
|
@ -21,7 +21,7 @@ Interfaces:
|
||||||
|
|
||||||
Methods and functions:
|
Methods and functions:
|
||||||
- Example: `bootstrap`, `someMethod`
|
- Example: `bootstrap`, `someMethod`
|
||||||
- Should be camel case with first lower case
|
- Should be camel case with first letter lowercase
|
||||||
|
|
||||||
|
|
||||||
Constants:
|
Constants:
|
||||||
|
|
Loading…
Reference in New Issue