From d3d362090cf0f956681acf364cbac64680b32238 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 24 Jun 2021 18:59:09 +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 e2fdaaeaf..e6b209695 100644 --- a/CONVENTIONS.md +++ b/CONVENTIONS.md @@ -27,7 +27,7 @@ Ternary Operator | (condition)? result1 : result2 | `printf("Value is 0: %s", (v Some other conventions to follow: - raylib code **does not use TABS**, use 4 spaces instead. - - Avoid trailing spaces + - Avoid trailing spaces, please, avoid them - **ALWAYS** initialize all defined variables. - Control flow statements always are followed **by a space**: ```c