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"]*/