Skip to content

Commit 0f959fb

Browse files
committed
readme example bug fix
1 parent d82a2ee commit 0f959fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ First You should know how to use John Resigs Base.js, details here: http://ejohn
3333
this._super();
3434
this.department = options.department;
3535
},
36-
get message {
36+
get message() {
3737
return this._super() + " Department: " + this.department;
3838
}
3939
});
4040

4141
var person = new Person({
4242
firstName : "Mike",
43-
lastName : "Miller
43+
lastName : "Miller"
4444
});
4545

4646
console.log(person.message);

0 commit comments

Comments
 (0)