Skip to content

Commit

Permalink
Docs: Fix broken links in no-mixed-operators (#6372)
Browse files Browse the repository at this point in the history
  • Loading branch information
meeber authored and ilyavolodin committed Jun 11, 2016
1 parent d8d6d29 commit 412ce8d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/rules/no-mixed-operators.md
Expand Up @@ -13,8 +13,8 @@ var foo = a && (b || c || d); /*GOOD*/

This rule checks `BinaryExpression` and `LogicalExpression`.

This rule may conflict with [no-extra-parens] rule.
If you use both this and [no-extra-parens] rule together, you need to use the `nestedBinaryExpressions` option of [no-extra-parens] rule.
This rule may conflict with [no-extra-parens](no-extra-parens.md) rule.
If you use both this and [no-extra-parens](no-extra-parens.md) rule together, you need to use the `nestedBinaryExpressions` option of [no-extra-parens](no-extra-parens.md) rule.

Examples of **incorrect** code for this rule:

Expand Down Expand Up @@ -133,6 +133,4 @@ If you don't want to be notified about mixed operators, then it's safe to disabl

## Related Rules

* [no-extra-parens]

[no-extra-parens]: no-extra-parens.md
* [no-extra-parens](no-extra-parens.md)

0 comments on commit 412ce8d

Please sign in to comment.