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`.