From 6779ef2dad09fa3e158e3ae29246e003865afdf1 Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 26 Sep 2020 19:43:12 +0200 Subject: [PATCH] Updated raylib coding conventions (markdown) --- raylib-coding-conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib-coding-conventions.md b/raylib-coding-conventions.md index 1406205..4831779 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 | lowerCase | `const int maxValue= 8` +Constants | lowerCase | `const int maxValue = 8` Struct | TitleCase | `struct Texture2D` Struct members |lowerCase | `texture.id` Enum | TitleCase | `TextureFormat`