Update doc for `validatesFormatOf`

This commit is contained in:
Amir Jafarian 2016-08-08 10:46:47 -04:00
parent 7f277b2563
commit 9557558c8f
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ Validatable.validatesExclusionOf = getConfigurator('exclusion');
* Validate format. Require a model to include a property that matches the given format. * Validate format. Require a model to include a property that matches the given format.
* *
* Require a model to include a property that matches the given format. Example: * Require a model to include a property that matches the given format. Example:
* `User.validatesFormat('name', {with: /\w+/});` * `User.validatesFormatOf('name', {with: /\w+/});`
* *
* @param {String} propertyName Property name to validate. * @param {String} propertyName Property name to validate.
* @options {Object} Options * @options {Object} Options