From e7e8a9f20383c5dc3c8701ca557636931620fcc0 Mon Sep 17 00:00:00 2001 From: Diogo Simoes Date: Thu, 5 Jul 2018 15:29:53 +0100 Subject: [PATCH] Fixed minor typo on shadowing problem --- exercises/global-scope-and-shadowing/problem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/global-scope-and-shadowing/problem.md b/exercises/global-scope-and-shadowing/problem.md index 603caea..9e86148 100644 --- a/exercises/global-scope-and-shadowing/problem.md +++ b/exercises/global-scope-and-shadowing/problem.md @@ -106,7 +106,7 @@ nesting, or long functions. # Your Mission Starting with your solution from the previous lesson, assign a value to the global variable -`quux` inside `foo()` (don't use `var` or `let`). Create a shadow variable in of `quux` +`quux` inside `foo()` (don't use `var` or `let`). Create a shadow variable of `quux` inside `zip()`. The value in the global variable `quux` has to be different than the value of `quux` inside `zip()`.