aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/with.rb
diff options
context:
space:
mode:
authorAlexey Vakhov <vakhov@gmail.com>2011-11-27 10:23:40 +0400
committerAlexey Vakhov <vakhov@gmail.com>2011-11-27 10:23:40 +0400
commit448df2d100feccf1d5df9db2b02b732a775d8406 (patch)
treecf437536463cb6711ef60fab701bb7a702d1568c /activemodel/lib/active_model/validations/with.rb
parentfc20d6b6815032935f02b53b4b928cd514ed66ac (diff)
downloadrails-448df2d100feccf1d5df9db2b02b732a775d8406.tar.gz
rails-448df2d100feccf1d5df9db2b02b732a775d8406.tar.bz2
rails-448df2d100feccf1d5df9db2b02b732a775d8406.zip
Cosmetic fixes in AM validatations docs
Diffstat (limited to 'activemodel/lib/active_model/validations/with.rb')
-rw-r--r--activemodel/lib/active_model/validations/with.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/with.rb b/activemodel/lib/active_model/validations/with.rb
index 93a340eb39..72b8562b93 100644
--- a/activemodel/lib/active_model/validations/with.rb
+++ b/activemodel/lib/active_model/validations/with.rb
@@ -56,7 +56,7 @@ module ActiveModel
# if the validation should occur (e.g. <tt>:if => :allow_validation</tt>,
# 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
+ # * <tt>:unless</tt> - Specifies a method, proc or string to call to
# 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>).