aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/length.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/length.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/length.rb')
-rw-r--r--activemodel/lib/active_model/validations/length.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/length.rb b/activemodel/lib/active_model/validations/length.rb
index 739f8190cc..940c58f3a7 100644
--- a/activemodel/lib/active_model/validations/length.rb
+++ b/activemodel/lib/active_model/validations/length.rb
@@ -110,7 +110,7 @@ module ActiveModel
#
# There is also a list of default options supported by every validator:
# +:if+, +:unless+, +:on+ and +:strict+.
- # See <tt>ActiveModel::Validation#validates</tt> for more information
+ # See <tt>ActiveModel::Validations#validates</tt> for more information
def validates_length_of(*attr_names)
validates_with LengthValidator, _merge_attributes(attr_names)
end