From eb2757eb368deda000cce8ebb1b043237e26223f Mon Sep 17 00:00:00 2001 From: neoarma <46651868+neoarma@users.noreply.github.com> Date: Tue, 2 Jul 2019 21:29:25 +1200 Subject: [PATCH] Update article.md Typo: "there" -> "their" --- 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 6f175a77..70b1738d 100644 --- a/1-js/06-advanced-functions/03-closure/article.md +++ b/1-js/06-advanced-functions/03-closure/article.md @@ -599,7 +599,7 @@ function f() { } let g = f(); // while g is alive -// there corresponding Lexical Environment lives +// their corresponding Lexical Environment lives g = null; // ...and now the memory is cleaned up ```