From d6a3bd1da1821de44de83b576f4d1cc005daf062 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 1 Jun 2020 09:47:29 +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 845df1a4..08bd6793 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 should variable once, and then refer to it without `let`. +So, we should declare a should variable once, and then refer to it without `let`. ```` ```smart header="Functional languages"