aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-08 08:36:04 -0800
committerZachary Scott <e@zzak.io>2014-12-08 08:36:04 -0800
commit04bf9fbeda354e0e006addcc810e29a17898d1e7 (patch)
treebe9b09af5ee4d89e321f31ec740b025c3ed57e81 /activerecord/lib
parent93d5d778349f72ac81c8e15ab1b049a742cfd50d (diff)
downloadrails-04bf9fbeda354e0e006addcc810e29a17898d1e7.tar.gz
rails-04bf9fbeda354e0e006addcc810e29a17898d1e7.tar.bz2
rails-04bf9fbeda354e0e006addcc810e29a17898d1e7.zip
Fix type case of "validations" and word-wrap from #17954 [ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/store.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/store.rb b/activerecord/lib/active_record/store.rb
index aa9d199227..919bc58ba5 100644
--- a/activerecord/lib/active_record/store.rb
+++ b/activerecord/lib/active_record/store.rb
@@ -20,8 +20,9 @@ module ActiveRecord
# the accessor methods. Be aware that these columns use a string keyed hash and do not allow access
# using a symbol.
#
- # NOTE: The default Validations with the exception of +uniqueness+ will work. For example, if you
- # want to check for +uniqueness+ with +hstore+ you will need to use a custom validation to handle it.
+ # NOTE: The default validations with the exception of +uniqueness+ will work.
+ # For example, if you want to check for +uniqueness+ with +hstore+ you will
+ # need to use a custom validation to handle it.
#
# Examples:
#