Skip to content

Commit

Permalink
fix: small things in CONVENTIONS.md (#2536)
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumedbox authored Jun 23, 2022
1 parent d7a0b46 commit b1fb469
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions CONVENTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Operators | value1 - value2 | `int res = value - 5;`
Enum | TitleCase | `enum TextureFormat`
Enum members | ALL_CAPS | `PIXELFORMAT_UNCOMPRESSED_R8G8B8`
Struct | TitleCase | `struct Texture2D`, `struct Material`
Struct members |lowerCase | `texture.width`, `color.r`
Struct members | lowerCase | `texture.width`, `color.r`
Functions | TitleCase | `InitWindow()`, `LoadImageFromMemory()`
Functions params | lowerCase | `width`, `height`
Ternary Operator | (condition)? result1 : result2 | `printf("Value is 0: %s", (value == 0)? "yes" : "no");`
Expand Down Expand Up @@ -52,7 +52,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)
{

}
Expand Down Expand Up @@ -92,4 +92,3 @@ resources/characters/enemy_slime.png
resources/common/font_arial.ttf
resources/common/gui.png
```

0 comments on commit b1fb469

Please sign in to comment.