Skip to content

Commit 110b3d6

Browse files
author
Markus Amalthea Magnuson
committed
Remove extra space in code comments.
1 parent 5619ee5 commit 110b3d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

page/javascript-101/scope.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function outer() {
6767
console.log( x );
6868
}
6969
70-
inner(); // 5
70+
inner(); // 5
7171
}
7272
```
7373

@@ -82,7 +82,7 @@ function outer() {
8282
var y = 10;
8383
}
8484
85-
inner(); // 5
85+
inner(); // 5
8686
8787
console.log( y ); // ReferenceError: y is not defined
8888
}

0 commit comments

Comments
 (0)