不要怂,就是干,撸起袖子干!

Commit 44eee347 by Jan Aagaard Meier

Merge pull request #4824 from subjectix/docs-fix-title-example

[ci skip] fix the example at the docs home page
2 parents b9580b87 d91d48ff
Showing with 2 additions and 2 deletions
...@@ -24,10 +24,10 @@ sequelize.sync().then(function() { ...@@ -24,10 +24,10 @@ sequelize.sync().then(function() {
return User.create({ return User.create({
username: 'janedoe', username: 'janedoe',
birthday: new Date(1980, 6, 20) birthday: new Date(1980, 6, 20)
}); }).then(function(jane) {
}).then(function(jane) {
console.log(jane.get({ console.log(jane.get({
plain: true plain: true
})) }))
});
}); });
``` ```
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!