This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
24
Wiki
Activity
typo in parenthesis
master
Chakib Chemso
4 years ago
parent
d81bd4d5ba
commit
d297ab383c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
raylib-coding-conventions.md
+ 1
- 1
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
class="err">)
)
if (
(value > 1)
&
&
(value
<
50
)
&
&
valueActive
)
{
}
Write
Preview
Loading…
Cancel
Save