aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/inclusion.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/inclusion.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/inclusion.rb')
-rw-r--r--activemodel/lib/active_model/validations/inclusion.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/inclusion.rb b/activemodel/lib/active_model/validations/inclusion.rb
index 0ea6012a5d..c6c5bae649 100644
--- a/activemodel/lib/active_model/validations/inclusion.rb
+++ b/activemodel/lib/active_model/validations/inclusion.rb
@@ -36,7 +36,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_inclusion_of(*attr_names)
validates_with InclusionValidator, _merge_attributes(attr_names)
end