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'); + }; } ```