From 0343e7dbc0c63176cd3c01bcba335e6b2f1cd945 Mon Sep 17 00:00:00 2001 From: Sergey Kondrashev Date: Tue, 11 Jul 2017 16:09:44 +0300 Subject: [PATCH] A typo was fixed --- 1-js/06-advanced-functions/03-closure/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/03-closure/article.md b/1-js/06-advanced-functions/03-closure/article.md index a3c687e9..53a4ecdf 100644 --- a/1-js/06-advanced-functions/03-closure/article.md +++ b/1-js/06-advanced-functions/03-closure/article.md @@ -86,7 +86,7 @@ Here's the bigger picture of how `let` variables work: ![lexical environment](lexical-environment-global-2.png) -Rectangles ont the right-hand side demonstrate how the global Lexical Environment changes during the execution: +Rectangles on the right-hand side demonstrate how the global Lexical Environment changes during the execution: 1. When the script starts, the Lexical Environment is empty. 2. The `let phrase` definition appears. Now it initially has no value, so `undefined` is stored.