From 9f193b9df06c349ee4ee18839b5349ebde7ef6ef Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Mon, 29 Jan 2018 10:03:53 +0100 Subject: [PATCH] Typo --- .../03-closure/1-counter-independent/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/03-closure/1-counter-independent/solution.md b/1-js/06-advanced-functions/03-closure/1-counter-independent/solution.md index cff69a25e2..25ecbea4cc 100644 --- a/1-js/06-advanced-functions/03-closure/1-counter-independent/solution.md +++ b/1-js/06-advanced-functions/03-closure/1-counter-independent/solution.md @@ -2,4 +2,4 @@ The answer: **0,1.** Functions `counter` and `counter2` are created by different invocations of `makeCounter`. -So they have independent outer Lexical Environments, each one has it's own `count`. +So they have independent outer Lexical Environments, each one has its own `count`.