diff options
author | Arthur Nogueira Neves <arthurnn@gmail.com> | 2014-07-21 11:41:12 -0400 |
---|---|---|
committer | Arthur Nogueira Neves <arthurnn@gmail.com> | 2014-07-21 11:41:12 -0400 |
commit | 2cb862a35b25b400a22be6cf1075e86849b0991c (patch) | |
tree | 239e87e0fc78b08b2960d9538ebc9270fb77e0b4 | |
parent | 93930686fda4582e89f3c25d878e40be8576fd29 (diff) | |
parent | 3b0430f3daccb6cfdf96a554d6555798fabd71ba (diff) | |
download | rails-2cb862a35b25b400a22be6cf1075e86849b0991c.tar.gz rails-2cb862a35b25b400a22be6cf1075e86849b0991c.tar.bz2 rails-2cb862a35b25b400a22be6cf1075e86849b0991c.zip |
Merge pull request #16242 from vadivelan-k/content_verifier
Touch option description grammatical error fixed [ci skip]
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 7ec7eb1b24..ec78d10124 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -1418,7 +1418,7 @@ module ActiveRecord # # Note that <tt>accepts_nested_attributes_for</tt> sets <tt>:autosave</tt> to <tt>true</tt>. # [:touch] - # If true, the associated object will be touched (the updated_at/on attributes set to now) + # If true, the associated object will be touched (the updated_at/on attributes set to current time) # when this record is either saved or destroyed. If you specify a symbol, that attribute # will be updated with the current time in addition to the updated_at/on attribute. # [:inverse_of] |