From f9ae6342d999cdcc01c148fd3dfe364d5f080245 Mon Sep 17 00:00:00 2001 From: Aleksandr Daniloff Date: Mon, 15 Feb 2016 19:33:24 +0100 Subject: [PATCH] fix basics declarations typo --- _posts/en/2016-02-15-basics-declarations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/en/2016-02-15-basics-declarations.md b/_posts/en/2016-02-15-basics-declarations.md index 8876743e..a8ba134d 100644 --- a/_posts/en/2016-02-15-basics-declarations.md +++ b/_posts/en/2016-02-15-basics-declarations.md @@ -50,7 +50,7 @@ console.log('--> 3.1:', `x = ${x}, y = ${y}`) //--> 3.1: x = 1, y = 2 ``` -Now we declare both variables through var. Meaning they only live in the context of the closure +Now we declare both variables through var. Meaning they only live in the context of the closure. ```js ;(() => {