From 994c76ba8a63928c65918db5d81294bb5fd2e2a7 Mon Sep 17 00:00:00 2001 From: hrodward <2536699+hrodward@users.noreply.github.com> Date: Wed, 16 Oct 2019 10:56:28 +0200 Subject: [PATCH] Update article.md Punctuation marks fixes --- 1-js/06-advanced-functions/03-closure/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/06-advanced-functions/03-closure/article.md b/1-js/06-advanced-functions/03-closure/article.md index aa3d27eb..076ffde8 100644 --- a/1-js/06-advanced-functions/03-closure/article.md +++ b/1-js/06-advanced-functions/03-closure/article.md @@ -184,8 +184,8 @@ sayHi(); // Pete The execution flow of the code above: 1. The global Lexical Environment has `name: "John"`. -2. At the line `(*)` the global variable is changed, now it has `name: "Pete"`. -3. When the function `sayHi()`, is executed and takes `name` from outside. Here that's from the global Lexical Environment where it's already `"Pete"`. +2. At the line `(*)` the global variable is changed. Now it has `name: "Pete"`. +3. When the function `sayHi()` is executed it takes `name` from outside, the global Lexical Environment, where its value is already `"Pete"`. ```smart header="One call -- one Lexical Environment"