diff options
author | Xavier Noria <fxn@hashref.com> | 2011-02-21 11:37:08 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-02-21 11:37:08 +0100 |
commit | b481574a33764e2db1caf01c233a9c9ac9723780 (patch) | |
tree | ff621c47d30cc38f9d6cfeec2bb9188b5f8b7ebf /activemodel/lib/active_model/validations.rb | |
parent | 9297027e082c69e590fc090132cee495ce0fc4b1 (diff) | |
download | rails-b481574a33764e2db1caf01c233a9c9ac9723780.tar.gz rails-b481574a33764e2db1caf01c233a9c9ac9723780.tar.bz2 rails-b481574a33764e2db1caf01c233a9c9ac9723780.zip |
copy-edits 8d96b89
Diffstat (limited to 'activemodel/lib/active_model/validations.rb')
-rw-r--r-- | activemodel/lib/active_model/validations.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/validations.rb b/activemodel/lib/active_model/validations.rb index 5e2c7b411d..98af88b5a0 100644 --- a/activemodel/lib/active_model/validations.rb +++ b/activemodel/lib/active_model/validations.rb @@ -71,8 +71,8 @@ module ActiveModel # end # # Options: - # * <tt>:on</tt> - Specifies the context where this validation is active - # (e.g. <tt>:on => :create</tt> or <tt>:on => :special_rules</tt>) + # * <tt>:on</tt> - Specifies the context where this validation is active + # (e.g. <tt>:on => :create</tt> or <tt>:on => :custom_validation_context</tt>) # * <tt>:allow_nil</tt> - Skip validation if attribute is +nil+. # * <tt>:allow_blank</tt> - Skip validation if attribute is blank. # * <tt>:if</tt> - Specifies a method, proc or string to call to determine |