From 63d33cb7f0e46484636fe178f8c8ffaaeaa024e9 Mon Sep 17 00:00:00 2001 From: Jason Date: Mon, 2 May 2016 15:51:47 -0500 Subject: [PATCH] Fix outdated Link The old link returns a Github Pages 404 error. --- docs/rules/jsx-uses-vars.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/jsx-uses-vars.md b/docs/rules/jsx-uses-vars.md index 95bc9fb55a..f320a5e415 100644 --- a/docs/rules/jsx-uses-vars.md +++ b/docs/rules/jsx-uses-vars.md @@ -1,6 +1,6 @@ # Prevent variables used in JSX to be incorrectly marked as unused (jsx-uses-vars) -Since 0.17.0 the ESLint `no-unused-vars` rule does not detect variables used in JSX ([see details](http://eslint.org/blog/2015/03/eslint-0.17.0-released/#changes-to-jsx/react-handling)). This rule will find variables used in JSX and mark them as used. +Since 0.17.0 the ESLint `no-unused-vars` rule does not detect variables used in JSX ([see details](http://eslint.org/blog/2015/03/eslint-0.17.0-released#changes-to-jsxreact-handling)). This rule will find variables used in JSX and mark them as used. This rule only has an effect when the `no-unused-vars` rule is enabled.