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

Commit d24a49f4 by Mick Hansen

Merge pull request #5654 from adrukh/patch-1

`limit: 3` typo in examples
2 parents e2a9c78e c9a329bf
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!