From d297ab383c47360e244d15c722fd89ebe821f216 Mon Sep 17 00:00:00 2001 From: Chakib Chemso <41765106+ChakibChemso@users.noreply.github.com> Date: Tue, 14 Sep 2021 20:41:09 +0100 Subject: [PATCH] typo in parenthesis --- raylib-coding-conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib-coding-conventions.md b/raylib-coding-conventions.md index 5bceb45..d158db0 100644 --- a/raylib-coding-conventions.md +++ b/raylib-coding-conventions.md @@ -48,7 +48,7 @@ switch (value) ``` - All conditions checks are always between parenthesis but not boolean values: ```c -if ((value > 1) && (value < 50) && valueActive)) +if ( (value > 1) && (value < 50) && valueActive ) { }