diff --git a/raylib-coding-conventions.md b/raylib-coding-conventions.md index 5f8a010..1406205 100644 --- a/raylib-coding-conventions.md +++ b/raylib-coding-conventions.md @@ -4,7 +4,7 @@ Code element | Convention | Example --- | :---: | --- Macros | ALL_CAPS | `#define MIN(a,b) (((a)<(b))?(a):(b))` Defines | ALL_CAPS | `#define PLATFORM_DESKTOP` -Constants | ALL_CAPS | `const int NUMBER = 8` +Constants | lowerCase | `const int maxValue= 8` Struct | TitleCase | `struct Texture2D` Struct members |lowerCase | `texture.id` Enum | TitleCase | `TextureFormat`