From c173d0b07bf2ef94311015bdf1576ab872bb119e Mon Sep 17 00:00:00 2001 From: Scott Simontis Date: Mon, 18 Jan 2021 02:23:20 -0500 Subject: [PATCH] Revised Convention Section Per issue #14 that I created earlier, I have made a possible revision to the section concerning following a consistent naming style. Please feel free to merge if you agree that it should be noted to discover the popular conventions for the language of your choice. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 420237a..91308ea 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ const friends = ['Kate', 'John'] ## Naming convention -Pick **one** naming convention and follow it. It may be `camelCase`, or `snake_case`, or anyhow else, it does not matter. What matters is for it to remain consistent. +Pick **one** naming convention and follow it. It may be `camelCase`, `PascalCase`, `snake_case`, or anything else, as long as it remains consistent. Many programming languages have their own traditions regarding naming conventions; check the documentation for your language or study some popular repositories on Github! ```js /* Bad */