diff options
author | Zachary Scott <e@zzak.io> | 2014-12-08 08:36:04 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-08 08:36:04 -0800 |
commit | 04bf9fbeda354e0e006addcc810e29a17898d1e7 (patch) | |
tree | be9b09af5ee4d89e321f31ec740b025c3ed57e81 /activerecord | |
parent | 93d5d778349f72ac81c8e15ab1b049a742cfd50d (diff) | |
download | rails-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')
-rw-r--r-- | activerecord/lib/active_record/store.rb | 5 |
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: # |