Skip to content

Commit 2ba675d

Browse files
committed
Merge pull request liammclennan#33 from guhelski/master
Fix indentation.
2 parents 088ea6a + 6819725 commit 2ba675d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

topics/about_control_structures.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test("for in", function() {
2525
var result = "";
2626
// for in enumerates the property names of an object
2727
for (var property_name in person) {
28-
result = result + property_name;
28+
result = result + property_name;
2929
};
3030
equal(__, result, 'what is the value of result?');
3131
});

0 commit comments

Comments
 (0)