Update PYTHON_API_CONVENTIONS.md

fixing typo
This commit is contained in:
Dor Shapira 2022-09-22 21:48:18 +03:00 committed by GitHub
parent 785df90beb
commit e0315f2e1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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` |