From 7bebaff8dd56512daff89dbbd219067184fe8165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Sun, 11 Dec 2016 23:21:33 +0100 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) 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