From 42ee6ff720552c7828dcdd2a094a2bc45c844ba3 Mon Sep 17 00:00:00 2001 From: William Ashton Date: Sat, 18 Jun 2016 20:33:33 -0400 Subject: [PATCH] Docs: Fix typo in max-params examples 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). --- docs/rules/max-params.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/max-params.md b/docs/rules/max-params.md index 01728ba996e..d5070abd6e9 100644 --- a/docs/rules/max-params.md +++ b/docs/rules/max-params.md @@ -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]*/