Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Docs: fix wording in docs for no-extra-parens config
Without this exact wording, the following code example was not styled properly.
  • Loading branch information
michaelficarra committed Nov 16, 2016
1 parent 0840068 commit 8998043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-extra-parens.md
Expand Up @@ -92,7 +92,7 @@ b => b ? (c = d) : (c = e);

### nestedBinaryExpressions

Examples of **correct** for this rule with the `"all"` and `{ "nestedBinaryExpressions": false }` options:
Examples of **correct** code for this rule with the `"all"` and `{ "nestedBinaryExpressions": false }` options:

```js
/* eslint no-extra-parens: ["error", "all", { "nestedBinaryExpressions": false }] */
Expand Down

0 comments on commit 8998043

Please sign in to comment.