From bad5236ed059cbc0903dbeb2c60f1a8d57f93b2e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 16 May 2021 18:05:30 +0300 Subject: [PATCH] minor fixes --- 1-js/02-first-steps/02-structure/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/02-structure/article.md b/1-js/02-first-steps/02-structure/article.md index deef1399..095f04f2 100644 --- a/1-js/02-first-steps/02-structure/article.md +++ b/1-js/02-first-steps/02-structure/article.md @@ -56,7 +56,7 @@ Errors which occur in such cases are quite hard to find and fix. If you're curious to see a concrete example of such an error, check this code out: ```js run -alert("Hello); +alert("Hello"); [1, 2].forEach(alert); ```