From ede1e0209ebdda6ba1b89dc9937e153199fa4d03 Mon Sep 17 00:00:00 2001 From: Dan Boulet Date: Wed, 2 Oct 2019 14:56:30 -0500 Subject: [PATCH] Docs: Fix missing word in sentence --- docs/rules/no-process-env.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-process-env.md b/docs/rules/no-process-env.md index e4a235676b0..9db800fa153 100644 --- a/docs/rules/no-process-env.md +++ b/docs/rules/no-process-env.md @@ -31,7 +31,7 @@ if(config.env === "development") { ## When Not To Use It -If prefer to use `process.env` throughout your project to retrieve values from environment variables, then you can safely disable this rule. +If you prefer to use `process.env` throughout your project to retrieve values from environment variables, then you can safely disable this rule. ## Further Reading