From 569ce9b2ec8b4911fae5de802761562238070895 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 11 Sep 2026 16:29:48 +0200 Subject: [PATCH] Update CONVENTIONS.md --- CONVENTIONS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONVENTIONS.md b/CONVENTIONS.md index 86044193c..37b732fcc 100644 --- a/CONVENTIONS.md +++ b/CONVENTIONS.md @@ -25,7 +25,7 @@ Functions params | lowerCase | `width`, `height` Ternary Operator | (condition)? result1 : result2 | `printf("Value is 0: %s", (value == 0)? "yes" : "no");` Some other conventions to follow: - - **ALWAYS** initialize all defined variables. + - **ALWAYS** initialize all defined variables, avoid defining variables in same code line, use multiple lines. - **Do not use TABS**, use 4 spaces instead. - Avoid trailing spaces, please, avoid them - Comments always start with space + capital letter and never end with a '.', place them **before** the line(s) they refer to