From a280e9595fa06ed0a1fd3ae3444e0da890f7bdb8 Mon Sep 17 00:00:00 2001 From: Preston Parry Date: Wed, 21 Jan 2015 23:04:39 -0800 Subject: [PATCH] Punctuation tweak --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4f1d51d..c48b03bd 100644 --- a/README.md +++ b/README.md @@ -494,8 +494,8 @@ } // The interpreter is hoisting the variable - // declaration to the top of the scope. - // Which means our example could be rewritten as: + // declaration to the top of the scope, + // which means our example could be rewritten as: function example() { var declaredButNotAssigned; console.log(declaredButNotAssigned); // => undefined