Update CONVENTIONS.md

This commit is contained in:
Ray 2021-06-24 18:59:09 +02:00 committed by GitHub
parent f3eff740ce
commit d3d362090c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ Ternary Operator | (condition)? result1 : result2 | `printf("Value is 0: %s", (v
Some other conventions to follow:
- raylib code **does not use TABS**, use 4 spaces instead.
- Avoid trailing spaces
- Avoid trailing spaces, please, avoid them
- **ALWAYS** initialize all defined variables.
- Control flow statements always are followed **by a space**:
```c