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",