Skip to content

Commit b3e40cd

Browse files
committed
Small indentation fix
1 parent 27ad9ab commit b3e40cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

koans/AboutFunctions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ describe("About Functions", function() {
2929
it("should have lexical scoping", function () {
3030
var variable = "top-level";
3131
function parentfunction() {
32-
var variable = "local";
32+
var variable = "local";
3333
function childfunction() {
34-
return variable;
34+
return variable;
3535
}
3636
return childfunction();
3737
}

0 commit comments

Comments
 (0)