From 326f4576b0e41c655e15892693747b63b4d56909 Mon Sep 17 00:00:00 2001 From: Oskar Risberg Date: Wed, 31 Aug 2016 15:40:52 +0200 Subject: [PATCH] Docs: Add missing 'to' in no-restricted-modules (#7022) --- docs/rules/no-restricted-modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-restricted-modules.md b/docs/rules/no-restricted-modules.md index 317eddf0cf4..5bf7ce0d8cc 100644 --- a/docs/rules/no-restricted-modules.md +++ b/docs/rules/no-restricted-modules.md @@ -3,7 +3,7 @@ Disallowing usage of specific Node.js modules can be useful if you want to control the available methods, a developer can use, to implement a feature. -This way you can block usage of the `fs` module if you want disallow file system access. +This way you can block usage of the `fs` module if you want to disallow file system access. Blocking the `os` module can be useful if you don't want to allow any operating system specific code. ## Rule Details