From c992ab0aac77e2a4329d8aeaab60f99da7814dd3 Mon Sep 17 00:00:00 2001 From: idori Date: Tue, 17 Oct 2017 23:09:47 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a17fd0fd..8f77a85f 100644 --- a/README.md +++ b/README.md @@ -260,7 +260,7 @@ Text here... ## ✔ 3.8 Naming conventions for variables, constants, functions and classes -**TL;DR:** Use ***lowerCamelCase*** when naming variables and functions, ***UpperCamelCase*** (capital first letter as well) when naming classes and ***UPPERCASE*** for constants. This will help you to easily distinguish between plain functions and classes that require instantioation. Use descriptive names, but try to keep them short. +**TL;DR:** Use ***lowerCamelCase*** when naming variables and functions, ***UpperCamelCase*** (capital first letter as well) when naming classes and ***UPPERCASE*** for constants. This will help you to easily distinguish between plain variables / functions, and classes that require instantiation. Use descriptive names, but try to keep them short.