From 4594d12eb154f5b5a9d2963790232af9e1e0786e Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Fri, 24 May 2019 12:11:09 +0900 Subject: [PATCH] update comment on sample code --- 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 4c156896..a02f1f79 100644 --- a/1-js/06-advanced-functions/03-closure/article.md +++ b/1-js/06-advanced-functions/03-closure/article.md @@ -248,7 +248,7 @@ function makeCounter() { let count = 0; return function() { - return count++; // has access to the outer counter + return count++; // has access to the outer "count" }; }