From a157a797c05dba74de0d05f768492744f5d4ed7d Mon Sep 17 00:00:00 2001 From: ethrea1 <7anshuai@gmail.com> Date: Fri, 6 Dec 2013 00:18:12 +0800 Subject: [PATCH] fix a link --- page/javascript-101/closures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/javascript-101/closures.md b/page/javascript-101/closures.md index 8945fc20..331cb0c5 100644 --- a/page/javascript-101/closures.md +++ b/page/javascript-101/closures.md @@ -8,7 +8,7 @@ attribution: Closures are an extension of the concept of scope. With closures, functions have access to variables that were available in the scope where the function was created. If that seems confusing, don’t worry: closures are generally best understood by example. -As shown in the [Functions](/functions/) section, functions have access to changing variable values. The same sort of behavior exists with functions defined within loops – the function "sees" the change in the variable's value even after the function is defined, resulting in each function referencing the last value stored in the variable. +As shown in the [Scope](/scope/) section, functions have access to changing variable values. The same sort of behavior exists with functions defined within loops – the function "sees" the change in the variable's value even after the function is defined, resulting in each function referencing the last value stored in the variable. ``` // Each function executed within the loop will reference