Skip to content

Commit

Permalink
Docs: fix grammar in “those who says” (#11390)
Browse files Browse the repository at this point in the history
Changed “those who says” to “those who say”.
  • Loading branch information
PoziWorld authored and ilyavolodin committed Feb 15, 2019
1 parent ea8e804 commit d3e9a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/semi.md
Expand Up @@ -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 = { }
Expand Down

0 comments on commit d3e9a27

Please sign in to comment.