File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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
2121adapted for JavaScript. This is not a style guide. It's a guide to producing
2222readable, 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
2525universally agreed upon. These are guidelines and nothing more, but they are
2626ones 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)
198198Limiting the amount of function parameters is incredibly important because it
199199makes testing your function easier. Having more than three leads to a
200200combinatorial explosion where you have to test tons of different cases with
You can’t perform that action at this time.
0 commit comments