From 1861b4086f1018f43ab19744d866d5da986c500d Mon Sep 17 00:00:00 2001 From: Trevin Hofmann Date: Fri, 20 Nov 2020 02:44:46 -1000 Subject: [PATCH] Docs: correct the function-call-argument-newline 'default' descriptions (#13866) --- docs/rules/function-call-argument-newline.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/rules/function-call-argument-newline.md b/docs/rules/function-call-argument-newline.md index bdb98807f72..01c1ff42604 100644 --- a/docs/rules/function-call-argument-newline.md +++ b/docs/rules/function-call-argument-newline.md @@ -72,7 +72,7 @@ baz( ### never -Examples of **incorrect** code for this rule with the default `"never"` option: +Examples of **incorrect** code for this rule with the `"never"` option: ```js /*eslint function-call-argument-newline: ["error", "never"]*/ @@ -123,7 +123,7 @@ baz("one", "two", (x) => { ### consistent -Examples of **incorrect** code for this rule with the default `"consistent"` option: +Examples of **incorrect** code for this rule with the `"consistent"` option: ```js /*eslint function-call-argument-newline: ["error", "consistent"]*/ @@ -143,7 +143,7 @@ baz("one", "two", ); ``` -Examples of **correct** code for this rule with the default `"consistent"` option: +Examples of **correct** code for this rule with the `"consistent"` option: ```js /*eslint function-call-argument-newline: ["error", "consistent"]*/