Update PYTHON_API_CONVENTIONS.md
fixing typo
This commit is contained in:
parent
785df90beb
commit
e0315f2e1b
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ Here is a list with some code conventions used by raylib in python:
|
|||
| Global variables | lowerCase | `windowReady = False` |
|
||||
| Constants variables | lowerCase | `maxValue = 8` |
|
||||
| Constants values | ALL_CAPS | `MAX_BUILDINGS = 5` |
|
||||
| string values | always "" | `output = "Hello"`, `"welcom"` |
|
||||
| string values | always "" | `output = "Hello"`, `"welcome"` |
|
||||
| float values | always x.x | `gravity = 10.0` |
|
||||
| Operators | value1 * value2 | `product = value * 6` |
|
||||
| Operators | value1 / value2 | `division = value / 4` |
|
||||
|
|
Reference in a new issue