From 37f46bd610ad4c492971120ed678152d07b48da1 Mon Sep 17 00:00:00 2001 From: 11un Date: Mon, 4 Feb 2019 08:54:24 -0800 Subject: [PATCH] typo / wording "remnant" --- 1-js/06-advanced-functions/04-var/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/04-var/article.md b/1-js/06-advanced-functions/04-var/article.md index 8262a93d..29f956d3 100644 --- a/1-js/06-advanced-functions/04-var/article.md +++ b/1-js/06-advanced-functions/04-var/article.md @@ -74,7 +74,7 @@ sayHi(); alert(phrase); // Error: phrase is not defined ``` -As we can see, `var` pierces through `if`, `for` or other code blocks. That's because a long time ago in JavaScript blocks had no Lexical Environments. And `var` is a reminiscence of that. +As we can see, `var` pierces through `if`, `for` or other code blocks. That's because a long time ago in JavaScript blocks had no Lexical Environments. And `var` is a remnant of that. ## "var" are processed at the function start