From 9d2cd8bf2027fa937a2df6e60fd8b7c3d0b46dc3 Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Fri, 10 Oct 2014 10:19:52 -0500 Subject: [PATCH 1/2] Fixed spelling error functions.js on line 70 spelling error - inaccessible - was inaccassible --- scope/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scope/functions.js b/scope/functions.js index ac7819b..d950e06 100755 --- a/scope/functions.js +++ b/scope/functions.js @@ -67,7 +67,7 @@ expect(ACTUAL === '???').to.be.true; }); - it('if an inner and an outer variable share the same name, and the name is referenced in the inner scope, the inner scope variable masks the variable from the outer scope with the same name. This renders the outer scope variables inaccassible from anywhere within the inner function block', function () { + it('if an inner and an outer variable share the same name, and the name is referenced in the inner scope, the inner scope variable masks the variable from the outer scope with the same name. This renders the outer scope variables inaccessible from anywhere within the inner function block', function () { var sameName = 'outer'; var fn = function () { var sameName = 'inner'; From 21f527f2de0e4bff017c67ed232aa447f06323ec Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Fri, 10 Oct 2014 13:02:19 -0500 Subject: [PATCH 2/2] Fixed another spelling error =) Line 26 of the main README.md -- changed to "because" -- was "becuase". --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18a2119..7bff544 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ No textbook is required for this course. All materials are included in this gith ## Technical requirements -Laptop, Chrome browser and a text editor. We recommend Sublime Text 3 for this course becuase its fast, light weight and you can run your JavaScript files in its console with Node. +Laptop, Chrome browser and a text editor. We recommend Sublime Text 3 for this course because its fast, light weight and you can run your JavaScript files in its console with Node.