diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3104b6c..cc4d633 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ ## Naming identifiers -Functions are written with UpperCamelCase and noun follows verb. +Functions are written with UpperCamelCase and verb is followed by noun. ``` DoThis(); @@ -40,7 +40,7 @@ typedef struct { } pointer_t; ``` -## If +## Control structures ``` if (something) { @@ -48,25 +48,17 @@ if (something) { } else { ... } -``` -## for - -``` for (uint8_t i; i