diff --git a/docs/rules/semi.md b/docs/rules/semi.md index e345b00066c..049ae41cf16 100644 --- a/docs/rules/semi.md +++ b/docs/rules/semi.md @@ -1,6 +1,6 @@ # require or disallow semicolons instead of ASI (semi) -JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as **automatic semicolon insertion (ASI)** and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid: +JavaScript doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as **automatic semicolon insertion (ASI)** and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid: ```js var name = "ESLint"