typo in parenthesis

Chakib Chemso
2021-09-14 20:41:09 +01:00
parent d81bd4d5ba
commit d297ab383c

@ -48,7 +48,7 @@ switch (value)
``` ```
- All conditions checks are always between parenthesis but not boolean values: - All conditions checks are always between parenthesis but not boolean values:
```c ```c
if ((value > 1) && (value < 50) && valueActive)) if ( (value > 1) && (value < 50) && valueActive )
{ {
} }