From 2eec91d6c15c9f0c0a6d0849638e6d665ba9c9fa Mon Sep 17 00:00:00 2001 From: tulpenkiste Date: Sun, 28 May 2023 19:15:19 +0100 Subject: [PATCH] Fix my stupid mistake (highlighting in CODINGSTYLE.md) --- CODINGSTYLE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODINGSTYLE.md b/CODINGSTYLE.md index 491a256..d1e6ce7 100644 --- a/CODINGSTYLE.md +++ b/CODINGSTYLE.md @@ -31,7 +31,7 @@ Variables should be prefixed with specific chars depending on where the variable - Global Variable - Prefix with `g` - Static Variable - Prefix with `s` Example: -```c++ +```cpp const int gAmountOfTimesISuccessfullyWriteGoodVariableNames = 0; class ExampleClass final {