Skip to content

Commit

Permalink
Small indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
morty committed May 19, 2013
1 parent 27ad9ab commit b3e40cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koans/AboutFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ describe("About Functions", function() {
it("should have lexical scoping", function () {
var variable = "top-level";
function parentfunction() {
var variable = "local";
var variable = "local";
function childfunction() {
return variable;
return variable;
}
return childfunction();
}
Expand Down

0 comments on commit b3e40cd

Please sign in to comment.