Merge pull request #9653 from baikho/patch-1

Update 05_Coding_Conventions.md
This commit is contained in:
Robbie Averill 2020-08-26 12:14:32 -07:00 committed by GitHub
commit c877954eef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ Class and filenames are in `UpperCamelCase` format:
class MyClass {}
```
new word must be capitalized. Successive capitalized letters are used in
new words must be capitalized. Successive capitalized letters are used in
acronyms, e.g. a class `XMLImporter` is used while `XmlImporter` is not.
### Methods