Skip to content

Commit 86036b5

Browse files
authored
Corrects usages of less for fewer
1 parent 62afdb2 commit 86036b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Software engineering principles, from Robert C. Martin's book
2121
adapted for JavaScript. This is not a style guide. It's a guide to producing
2222
readable, reusable, and refactorable software in JavaScript.
2323

24-
Not every principle herein has to be strictly followed, and even less will be
24+
Not every principle herein has to be strictly followed, and even fewer will be
2525
universally agreed upon. These are guidelines and nothing more, but they are
2626
ones codified over many years of collective experience by the authors of
2727
*Clean Code*.
@@ -194,7 +194,7 @@ function createMicrobrewery(name) {
194194
**[⬆ back to top](#table-of-contents)**
195195

196196
## **Functions**
197-
### Function arguments (2 or less ideally)
197+
### Function arguments (2 or fewer ideally)
198198
Limiting the amount of function parameters is incredibly important because it
199199
makes testing your function easier. Having more than three leads to a
200200
combinatorial explosion where you have to test tons of different cases with

0 commit comments

Comments
 (0)