From 0e2d2c162efc5e59e18476c1088379ce3741277b Mon Sep 17 00:00:00 2001 From: Rand McKinney Date: Fri, 4 Sep 2015 16:31:54 -0700 Subject: [PATCH] Update validations.js Fix small mistake in doc comment. --- lib/validations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/validations.js b/lib/validations.js index db9ef1fe..0d28470a 100644 --- a/lib/validations.js +++ b/lib/validations.js @@ -52,7 +52,7 @@ Validatable.validatesPresenceOf = getConfigurator('presence'); * For example, validate absence of reserved * ``` * Post.validatesAbsenceOf('reserved', { unless: 'special' }); - * + * ``` * @param {String} propertyName One or more property names. * @options {Object} errMsg Optional custom error message. Default is "can't be set" * @property {String} message Error message to use instead of default.