From ade6a9b5b7d7592aa18227ebc17881af924026c3 Mon Sep 17 00:00:00 2001 From: Will Day Date: Sat, 30 Apr 2016 14:36:45 -0500 Subject: [PATCH] Docs: typo: "eslint-disable-line" not "eslint disable-line" (#6019) --- docs/rules/global-require.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/global-require.md b/docs/rules/global-require.md index 0c6713f2afe..c31134dcc62 100644 --- a/docs/rules/global-require.md +++ b/docs/rules/global-require.md @@ -86,4 +86,4 @@ var x = require("x"), ## When Not To Use It -If you have a module that must be initialized with information that comes from the file-system or if a module is only used in very rare situations and will cause significant overhead to load it may make sense to disable the rule. If you need to `require()` an optional dependency inside of a `try`/`catch`, you can disable this rule for just that dependency using the `// eslint disable-line global-require` comment. +If you have a module that must be initialized with information that comes from the file-system or if a module is only used in very rare situations and will cause significant overhead to load it may make sense to disable the rule. If you need to `require()` an optional dependency inside of a `try`/`catch`, you can disable this rule for just that dependency using the `// eslint-disable-line global-require` comment.