From e997f32b936463ac38e8b0034f764c47502e56a8 Mon Sep 17 00:00:00 2001 From: Tom <48167669+whynotavailable@users.noreply.github.com> Date: Thu, 27 Feb 2020 20:05:56 -0500 Subject: [PATCH] Docs: Updated arrow-parens for minor grammar issue (#12962) --- docs/rules/arrow-parens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/arrow-parens.md b/docs/rules/arrow-parens.md index f13efe9d81b..fbcdbaeff93 100644 --- a/docs/rules/arrow-parens.md +++ b/docs/rules/arrow-parens.md @@ -90,7 +90,7 @@ a.then((foo) => { if (true) {} }); #### If Statements -One of benefits of this option is that it prevents the incorrect use of arrow functions in conditionals: +One of the benefits of this option is that it prevents the incorrect use of arrow functions in conditionals: ```js /*eslint-env es6*/