From ab93cee5b9f76f32b3df3c8af18af839a539dfd1 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 1 Jun 2020 09:47:07 +0300 Subject: [PATCH] minor fixes --- 1-js/02-first-steps/04-variables/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index a8d131c9..845df1a4 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -145,7 +145,7 @@ let message = "This"; // repeated 'let' leads to an error let message = "That"; // SyntaxError: 'message' has already been declared ``` -So, we declare a variable once, and then should refer to it without `let`. +So, we declare a should variable once, and then refer to it without `let`. ```` ```smart header="Functional languages"