From 4a96ea57a6e153b0ee151d6118705ca2dd7371f9 Mon Sep 17 00:00:00 2001 From: Nik Date: Sat, 3 Dec 2016 12:22:53 -0500 Subject: [PATCH] Clarify scope explanation --- exercises/scope-chains/solution.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exercises/scope-chains/solution.md b/exercises/scope-chains/solution.md index caa1d0f..0fceda0 100644 --- a/exercises/scope-chains/solution.md +++ b/exercises/scope-chains/solution.md @@ -16,8 +16,7 @@ The scope chain you created now looks like this: var quux ``` -By following the arrows, we can see `zip()` has access to `var bar`, but not the -other way around. +By following the arrows, we can see `zip()` has access to `var bar`, but `foo()` does not have access to `var quux`. ----