From 4b1fbda5aea0e1d5444f6341a76343925e9061ca Mon Sep 17 00:00:00 2001 From: Yusuf Turhan Papurcu Date: Tue, 19 Jan 2021 00:06:38 +0300 Subject: [PATCH] Changed Named convention's bad example I changed pages_count to page_count because it seems more right. Also all 3 examples have same variable. It showed the result better. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 420237a..cf2963a 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Pick **one** naming convention and follow it. It may be `camelCase`, or `snake_c ```js /* Bad */ -const pages_count = 5 +const page_count = 5 const shouldUpdate = true /* Good */