Skip to content

Commit

Permalink
Docs: Fix typo in max-params examples (#6471)
Browse files Browse the repository at this point in the history
Original meaning inferred from earlier statements in the file, the header for the immediate example, and the code for the rule itself (on line 49).
  • Loading branch information
Jwashton authored and gyandeeps committed Jun 19, 2016
1 parent 1e185b9 commit a9d4cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/max-params.md
Expand Up @@ -37,7 +37,7 @@ let foo = (bar, baz, qux, qxx) => {
};
```

Examples of **correct** code for this rule with the default `{ "max": 4 }` option:
Examples of **correct** code for this rule with the default `{ "max": 3 }` option:

```js
/*eslint max-params: ["error", 3]*/
Expand Down

0 comments on commit a9d4cb2

Please sign in to comment.