From 71a03797fed8a55e67f138b692df2a8a6111e717 Mon Sep 17 00:00:00 2001 From: Trevin Hofmann Date: Wed, 18 Nov 2020 21:27:12 -1000 Subject: [PATCH] Docs: correct the function-call-argument-newline 'default' descriptions --- 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"]*/