Skip to content

Commit

Permalink
docs(model-querying-basics): added semicolons on docs (#13611)
Browse files Browse the repository at this point in the history
  • Loading branch information
bishwo-dahal committed Oct 30, 2021
1 parent 0748fc6 commit 7a66841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/manual/core-concepts/model-querying-basics.md
Expand Up @@ -139,7 +139,7 @@ Post.findAll({
authorId: 2
}
});
// SELECT * FROM post WHERE authorId = 2
// SELECT * FROM post WHERE authorId = 2;
```

Observe that no operator (from `Op`) was explicitly passed, so Sequelize assumed an equality comparison by default. The above code is equivalent to:
Expand All @@ -153,7 +153,7 @@ Post.findAll({
}
}
});
// SELECT * FROM post WHERE authorId = 2
// SELECT * FROM post WHERE authorId = 2;
```

Multiple checks can be passed:
Expand Down

0 comments on commit 7a66841

Please sign in to comment.