add missing parentheses to validates_with documentation [skip ci]

This commit is contained in:
Steve Agalloco 2014-04-04 11:19:39 -04:00
parent b9774a5943
commit e412ccbb56
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ module ActiveModel
#
# Configuration options:
# * <tt>:on</tt> - Specifies when this validation is active
# (<tt>:create</tt> or <tt>:update</tt>.
# (<tt>:create</tt> or <tt>:update</tt>).
# * <tt>:if</tt> - Specifies a method, proc or string to call to determine
# if the validation should occur (e.g. <tt>if: :allow_validation</tt>,
# or <tt>if: Proc.new { |user| user.signup_step > 2 }</tt>).