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

Commit 1b334b3c by Connor Clark Committed by Sushant

fix typo in validations documentation (#7546)

1 parent 08054924
Showing with 1 additions and 1 deletions
...@@ -385,7 +385,7 @@ var ValidateMe = sequelize.define('foo', { ...@@ -385,7 +385,7 @@ var ValidateMe = sequelize.define('foo', {
isDate: true, // only allow date strings isDate: true, // only allow date strings
isAfter: "2011-11-05", // only allow date strings after a specific date isAfter: "2011-11-05", // only allow date strings after a specific date
isBefore: "2011-11-05", // only allow date strings before a specific date isBefore: "2011-11-05", // only allow date strings before a specific date
max: 23, // only allow values max: 23, // only allow values <= 23
min: 23, // only allow values >= 23 min: 23, // only allow values >= 23
isCreditCard: true, // check for valid credit card numbers isCreditCard: true, // check for valid credit card numbers
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!