Skip to content

Commit 03353d0

Browse files
committed
Updated indentation
1 parent a2fe311 commit 03353d0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -510,13 +510,13 @@
510510
// the same is true when the function name
511511
// is the same as the variable name.
512512
function example() {
513-
console.log(named); // => undefined
513+
console.log(named); // => undefined
514514

515-
named(); // => TypeError named is not a function
515+
named(); // => TypeError named is not a function
516516

517-
var named = function named() {
518-
console.log('named');
519-
};
517+
var named = function named() {
518+
console.log('named');
519+
};
520520
}
521521
}
522522
```

0 commit comments

Comments
 (0)