From 8eb07197cc6fdbc3ad09f88a3a6b248a3d559205 Mon Sep 17 00:00:00 2001 From: Michael Kohler Date: Sun, 6 Oct 2019 13:08:46 +0200 Subject: [PATCH] Rename UPPER_CAMEL_CASE to UPPER_SNAKE_CASE in Coding Style --- code_style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code_style.md b/code_style.md index 96f3879ebc..e7844b939c 100644 --- a/code_style.md +++ b/code_style.md @@ -34,7 +34,7 @@ General Style - UpperCamelCase for class and type names - lowerCamelCase for functions and variables. - Single line ternary operators are fine. -- UPPER_CAMEL_CASE for constants +- UPPER_SNAKE_CASE for constants - Single quotes for strings by default, for consistency with most JavaScript styles: ```javascript