Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions exercises/scope-chains/solution.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

----

Expand Down