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 ) { }