diff --git a/README.md b/README.md index a178c7f..80b4537 100644 --- a/README.md +++ b/README.md @@ -7,16 +7,16 @@ # Naming cheatsheet Naming things is hard. Let's make it easier. -The purpose of this document is to break down and systematize the concepts and patterns commonly used for variable naming. Beware that *variable* in this document refers to variables, methods, and generally anything created during your programming work. +This document contains systematized concepts and patterns often used when naming variables. ## Summary * [Guidelines](#guidelines) * [HC/LC Pattern](#hclc-pattern) * **[Actions](#actions)** * [get](#get) - * [fetch](#fetch) * [set](#set) * [reset](#reset) + * [fetch](#fetch) * [remove](#remove) * [delete](#delete) * [compose](#compose) @@ -29,7 +29,7 @@ The purpose of this document is to break down and systematize the concepts and p * [prev/next](#prevnext) ## Guidelines -* Pick **one** naming convention and follow it. Whether it is `likeThis`, or `like_this`, or anyhow else, it does not matter. What matters is consistency in your work. +* Pick **one** naming convention and follow it. Whether it is `likeThis`, or `like_this`, or anyhow else, it does not matter. What matters is consistency in your code. ```js /* Bad */ @@ -94,6 +94,8 @@ const isDisabled = (itemsCount <= 3); return (