Skip to content

Commit 7b4505e

Browse files
committed
Merge pull request liammclennan#46 from lewiscowper/patch-1
Unnecessary semicolon
2 parents ec4a522 + 42d6ac0 commit 7b4505e

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
@@ -26,7 +26,7 @@ test("for in", function() {
2626
// for in enumerates the property names of an object
2727
for (var property_name in person) {
2828
result = result + property_name;
29-
};
29+
}
3030
equal(__, result, 'what is the value of result?');
3131
});
3232

0 commit comments

Comments
 (0)