Skip to content

Commit 860dae7

Browse files
committed
Merge pull request mrdavidlaing#24 from morty/patch-1
Small indentation fix
2 parents 27ad9ab + b3e40cd commit 860dae7

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)