From dbad15e8ff21a6f85cfb8e34e40fb820995a022f Mon Sep 17 00:00:00 2001 From: Mathias Bader Date: Fri, 17 Jan 2014 18:56:38 +0100 Subject: [PATCH] Corrected typo --- 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..5f748581 100644 --- a/page/javascript-101/closures.md +++ b/page/javascript-101/closures.md @@ -44,7 +44,7 @@ Closures can also be used to resolve issues with the `this` keyword, which is un var outerObj = { myName: "outer", outerFunction: function() { - // provide a reference to outerObj through innerFunction"s closure + // provide a reference to outerObj through innerFunction's closure var self = this; var innerObj = { myName: "inner",