Skip to content

Commit

Permalink
Docs: correct the function-call-argument-newline 'default' descriptio…
Browse files Browse the repository at this point in the history
…ns (#13866)
  • Loading branch information
trevinhofmann committed Nov 20, 2020
1 parent 98c00c4 commit 1861b40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/rules/function-call-argument-newline.md
Expand Up @@ -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"]*/
Expand Down Expand Up @@ -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"]*/
Expand All @@ -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"]*/
Expand Down

0 comments on commit 1861b40

Please sign in to comment.