From 992f1f6944ddfe88147ddad0fcc6ff2e2ce92703 Mon Sep 17 00:00:00 2001 From: Grant Snodgrass Date: Fri, 10 Jun 2016 21:31:22 -0400 Subject: [PATCH] Docs: Fix broken links in no-mixed-operators --- docs/rules/no-mixed-operators.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/rules/no-mixed-operators.md b/docs/rules/no-mixed-operators.md index 2badb53eea6..8961c7dd867 100644 --- a/docs/rules/no-mixed-operators.md +++ b/docs/rules/no-mixed-operators.md @@ -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: @@ -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)