From d3e9a27bbba30008a610df59e82b7192f0ecc3a3 Mon Sep 17 00:00:00 2001 From: PoziWorld <5961162+PoziWorld@users.noreply.github.com> Date: Fri, 15 Feb 2019 11:40:41 -0800 Subject: [PATCH] =?UTF-8?q?Docs:=20fix=20grammar=20in=20=E2=80=9Cthose=20w?= =?UTF-8?q?ho=20says=E2=80=9D=20(#11390)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed “those who says” to “those who say”. --- docs/rules/semi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/semi.md b/docs/rules/semi.md index c49b08faade..e345b00066c 100644 --- a/docs/rules/semi.md +++ b/docs/rules/semi.md @@ -31,7 +31,7 @@ return; Effectively, a semicolon is inserted after the `return` statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases. -On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code: +On the other side of the argument are those who say that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code: ```js var globalCounter = { }