@@ -131,7 +131,7 @@ Validatable.validatesNumericalityOf = getConfigurator('numericality');
131131 * @param {String } propertyName Property name to validate.
132132 * @options {Object} Options See below
133133 * @property {Array } inArray Property must match one of the values in the array to be valid.
134- * @property {String } message Optional error message if property is not valid.
134+ * @property {String } message Optional error message if property is not valid.
135135 * Default error message: "is not included in the list".
136136 * @property {Boolean } allowNull Whether null values are allowed.
137137 */
@@ -146,7 +146,7 @@ Validatable.validatesInclusionOf = getConfigurator('inclusion');
146146 * @options {Object} Options
147147 * @property {Array } inArray Property must match one of the values in the array to be valid.
148148 * @property {String } message Optional error message if property is not valid. Default error message: "is reserved".
149- * @property {Boolean } allowNull Whether null values are allowed.
149+ * @property {Boolean } allowNull Whether null values are allowed.
150150 */
151151Validatable . validatesExclusionOf = getConfigurator ( 'exclusion' ) ;
152152
@@ -160,7 +160,7 @@ Validatable.validatesExclusionOf = getConfigurator('exclusion');
160160 * @options {Object} Options
161161 * @property {RegExp } with Regular expression to validate format.
162162 * @property {String } message Optional error message if property is not valid. Default error message: " is invalid".
163- * @property {Boolean } allowNull Whether null values are allowed.
163+ * @property {Boolean } allowNull Whether null values are allowed.
164164 */
165165Validatable . validatesFormatOf = getConfigurator ( 'format' ) ;
166166
@@ -214,7 +214,7 @@ Validatable.validate = getConfigurator('custom');
214214 * @param {Function } validatorFn Custom validation function.
215215 * @options {Object} Options See below
216216 * @property {String } message Optional error message if property is not valid. Default error message: " is invalid".
217- * @property {Boolean } allowNull Whether null values are allowed.
217+ * @property {Boolean } allowNull Whether null values are allowed.
218218 */
219219Validatable . validateAsync = getConfigurator ( 'custom' , { async : true } ) ;
220220
@@ -239,7 +239,7 @@ Validatable.validateAsync = getConfigurator('custom', {async: true});
239239 * @property {RegExp } with Regular expression to validate format.
240240 * @property {Array.<String> } scopedTo List of properties defining the scope.
241241 * @property {String } message Optional error message if property is not valid. Default error message: "is not unique".
242- * @property {Boolean } allowNull Whether null values are allowed.
242+ * @property {Boolean } allowNull Whether null values are allowed.
243243 */
244244Validatable . validatesUniquenessOf = getConfigurator ( 'uniqueness' , { async : true } ) ;
245245
0 commit comments