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

Commit c9a329bf by Anton Drukh

`limit: 3` typo in examples

1 parent e2a9c78e
Showing with 2 additions and 2 deletions
...@@ -117,7 +117,7 @@ User.findAndCountAll({ ...@@ -117,7 +117,7 @@ User.findAndCountAll({
include: [ include: [
{ model: Profile, required: true} { model: Profile, required: true}
], ],
limit 3 limit: 3
}); });
``` ```
...@@ -128,7 +128,7 @@ User.findAndCountAll({ ...@@ -128,7 +128,7 @@ User.findAndCountAll({
include: [ include: [
{ model: Profile, where: { active: true }} { model: Profile, where: { active: true }}
], ],
limit 3 limit: 3
}); });
``` ```
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!