File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Software engineering principles, from Robert C. Martin's book
21
21
adapted for JavaScript. This is not a style guide. It's a guide to producing
22
22
readable, reusable, and refactorable software in JavaScript.
23
23
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
25
25
universally agreed upon. These are guidelines and nothing more, but they are
26
26
ones codified over many years of collective experience by the authors of
27
27
* Clean Code* .
@@ -194,7 +194,7 @@ function createMicrobrewery(name) {
194
194
** [ ⬆ back to top] ( #table-of-contents ) **
195
195
196
196
## ** Functions**
197
- ### Function arguments (2 or less ideally)
197
+ ### Function arguments (2 or fewer ideally)
198
198
Limiting the amount of function parameters is incredibly important because it
199
199
makes testing your function easier. Having more than three leads to a
200
200
combinatorial explosion where you have to test tons of different cases with
You can’t perform that action at this time.
0 commit comments