aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/exclusion.rb
diff options
context:
space:
mode:
authorSen Zhang <sen@letslinc.com>2017-02-15 14:29:04 -0800
committerSen Zhang <sen@letslinc.com>2017-02-15 14:29:04 -0800
commitd57356bd5ad0d64ed3fb530d722f32107ea60cdf (patch)
treeceea9b283984f7d9d39666ea203c8714104a8ff6 /activemodel/lib/active_model/validations/exclusion.rb
parenta9231d56e4a6fcbfe39518f60239d305a8a80363 (diff)
downloadrails-d57356bd5ad0d64ed3fb530d722f32107ea60cdf.tar.gz
rails-d57356bd5ad0d64ed3fb530d722f32107ea60cdf.tar.bz2
rails-d57356bd5ad0d64ed3fb530d722f32107ea60cdf.zip
change ActiveModel::Validation to ActiveModel::Validations in comments
Diffstat (limited to 'activemodel/lib/active_model/validations/exclusion.rb')
-rw-r--r--activemodel/lib/active_model/validations/exclusion.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/exclusion.rb b/activemodel/lib/active_model/validations/exclusion.rb
index 82a1893823..b7156ba802 100644
--- a/activemodel/lib/active_model/validations/exclusion.rb
+++ b/activemodel/lib/active_model/validations/exclusion.rb
@@ -38,7 +38,7 @@ module ActiveModel
#
# There is also a list of default options supported by every validator:
# +:if+, +:unless+, +:on+, +:allow_nil+, +:allow_blank+, and +:strict+.
- # See <tt>ActiveModel::Validation#validates</tt> for more information
+ # See <tt>ActiveModel::Validations#validates</tt> for more information
def validates_exclusion_of(*attr_names)
validates_with ExclusionValidator, _merge_attributes(attr_names)
end