summaryrefslogtreecommitdiffhomepage
path: root/CONVENTIONS.md
diff options
context:
space:
mode:
authorRay <[email protected]>2021-06-24 18:59:09 +0200
committerGitHub <[email protected]>2021-06-24 18:59:09 +0200
commitd3d362090cf0f956681acf364cbac64680b32238 (patch)
tree58e0a34ed3f144504dbf56e1611aaaeaea2aa276 /CONVENTIONS.md
parentf3eff740cece7481ca7d1631703c02a1029ff729 (diff)
downloadraylib-d3d362090cf0f956681acf364cbac64680b32238.tar.gz
raylib-d3d362090cf0f956681acf364cbac64680b32238.zip
Update CONVENTIONS.md
Diffstat (limited to 'CONVENTIONS.md')
-rw-r--r--CONVENTIONS.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONVENTIONS.md b/CONVENTIONS.md
index e2fdaaea..e6b20969 100644
--- a/CONVENTIONS.md
+++ b/CONVENTIONS.md
@@ -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