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

Commit 89ced7c0 by Mick Hansen

Merge branch 'master' of github.com:sequelize/sequelize

2 parents 46abbe88 516dd238
Showing with 3 additions and 3 deletions
......@@ -595,7 +595,7 @@ module.exports = (function() {
*
* __Simple search using AND and =__
* ```js
* Model.find({
* Model.findAll({
* where: {
* attr1: 42,
* attr2: 'cake'
......@@ -609,7 +609,7 @@ module.exports = (function() {
* __Using greater than, less than etc.__
* ```js
*
* Model.find({
* Model.findAll({
* where: {
* attr1: {
* gt: 50
......@@ -633,7 +633,7 @@ module.exports = (function() {
*
* __Queries using OR__
* ```js
* Model.find({
* Model.findAll({
* where: Sequelize.and(
* { name: 'a project' },
* Sequelize.or(
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!