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
This commit is contained in:
Rick Yeh
2016-01-21 22:54:27 -08:00
parent 06746fa39d
commit fb3c4cac20

View File

@@ -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() {