From fdee69e09eb4c7ab4593bdeaffb824994b8212b3 Mon Sep 17 00:00:00 2001 From: Anton Curmanschii Date: Mon, 11 Mar 2024 22:16:53 +0200 Subject: [PATCH] Oops, made a typo --- 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 907a47c..f4806d0 100644 --- a/raylib-coding-conventions.md +++ b/raylib-coding-conventions.md @@ -46,7 +46,7 @@ switch (value) default: break; } ``` - - All condition checks are always encoled in parentheses, with the exception of simple boolean values: + - All condition checks are always enclosed in parentheses, with the exception of simple boolean values: ```c if ( (value > 1) && (value < 50) && valueActive ) {