From 3939c879e1683a70de7974ede1e0cd1dfef13d58 Mon Sep 17 00:00:00 2001 From: Ebta Setiawan Date: Tue, 26 Feb 2013 11:49:46 +0700 Subject: [PATCH] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Small correction close curly braced --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6be6dee9bf..da89be216b 100644 --- a/README.md +++ b/README.md @@ -493,19 +493,19 @@ var named = function superPower() { console.log('Flying'); }; + } - // the same is true when the function name - // is the same as the variable name. - function example() { - console.log(named); // => undefined + // the same is true when the function name + // is the same as the variable name. + function example() { + console.log(named); // => undefined - named(); // => TypeError named is not a function + named(); // => TypeError named is not a function - var named = function named() { - console.log('named'); - }; - } + var named = function named() { + console.log('named'); + }; } ```