[ci skip] fix doc typo for validates_uniqueness_of

This commit is contained in:
Satoru Yamasaki 2014-07-29 20:07:17 +09:00
parent 94abb92c8d
commit 7413eeee36

@ -152,7 +152,7 @@ module ClassMethods
# or <tt>if: Proc.new { |user| user.signup_step > 2 }</tt>). The method,
# proc or string should return or evaluate to a +true+ or +false+ value.
# * <tt>:unless</tt> - Specifies a method, proc or string to call to
# determine if the validation should ot occur (e.g. <tt>unless: :skip_validation</tt>,
# determine if the validation should not occur (e.g. <tt>unless: :skip_validation</tt>,
# or <tt>unless: Proc.new { |user| user.signup_step <= 2 }</tt>). The
# method, proc or string should return or evaluate to a +true+ or +false+
# value.