From f13f18ed1e5ba02abde38e69905f177c540ec90d Mon Sep 17 00:00:00 2001 From: Sharmila Date: Thu, 5 Apr 2018 10:51:24 -0700 Subject: [PATCH] minor typo in import/no-cycle rule docs --- docs/rules/no-cycle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-cycle.md b/docs/rules/no-cycle.md index aa28fda0a..ef961e1b5 100644 --- a/docs/rules/no-cycle.md +++ b/docs/rules/no-cycle.md @@ -32,7 +32,7 @@ cycles created by `require` within imported modules may not be detected. There is a `maxDepth` option available to prevent full expansion of very deep dependency trees: ```js -/*eslint import/no-unresolved: [2, { maxDepth: 1 }]*/ +/*eslint import/no-cycle: [2, { maxDepth: 1 }]*/ // dep-c.js import './dep-a.js'