Update 05_Coding_Conventions.md

Fixed typo
This commit is contained in:
Sang Lostrie 2020-08-26 19:44:11 +01:00 committed by GitHub
parent 9567a9e768
commit 28a81bb97d
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