From c47fa0dfc76211b3b0e5649c63acdd9606ce0eca Mon Sep 17 00:00:00 2001 From: Dan Boulet Date: Thu, 3 Oct 2019 13:57:00 -0500 Subject: [PATCH] Docs: Fix missing word in sentence (#12361) --- 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