diff --git a/1-js/02-first-steps/02-structure/article.md b/1-js/02-first-steps/02-structure/article.md index ffd0980b..272b1d64 100644 --- a/1-js/02-first-steps/02-structure/article.md +++ b/1-js/02-first-steps/02-structure/article.md @@ -38,7 +38,7 @@ alert( 'World' ) Here JavaScript interprets the line break as an "implicit" semicolon. That's also called an [automatic semicolon insertion](https://tc39.github.io/ecma262/#sec-automatic-semicolon-insertion). -**In most cases a newline implies a simicolon. But "in most cases" does not mean "always"!** +**In most cases a newline implies a semicolon. But "in most cases" does not mean "always"!** There are cases when a newline does not mean a semicolon, for example: