From 5cd131403ec52d3d53a8fad5e082f688f1d7bea0 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 1 Jun 2020 09:55:35 +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 08bd6793..0e921c56 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 should 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"