Skip to content

Commit 8300368

Browse files
committed
Merge pull request mrdavidlaing#26 from jonasac/patch-1
Fix missing semicolon.
2 parents 860dae7 + 44b1af3 commit 8300368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

koans/AboutObjects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe("About Objects", function () {
3333
});
3434

3535
it("should confirm that when a function is attached to an object, 'this' refers to the object", function () {
36-
var currentDate = new Date()
36+
var currentDate = new Date();
3737
var currentYear = (currentDate.getFullYear());
3838
var meglomaniac = {
3939
mastermind: "James Wood",

0 commit comments

Comments
 (0)