From fb3c4cac200861f2e6dd77e8bf7f29ce9be02d5e Mon Sep 17 00:00:00 2001 From: Rick Yeh Date: Thu, 21 Jan 2016 22:54:27 -0800 Subject: [PATCH] Fixed minor capitalization change in Hoisting Not sure if it's an actual fix, but just noticed this was the only comment that had capitalization that wasn't a proper noun --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 73c1a73997..5fefffe5b7 100644 --- a/README.md +++ b/README.md @@ -1196,7 +1196,7 @@ Other Style Guides var declaredButNotAssigned = true; } - // The interpreter is hoisting the variable + // the interpreter is hoisting the variable // declaration to the top of the scope, // which means our example could be rewritten as: function example() {