diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-10-11 00:59:52 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-10-11 01:01:54 +0530 |
commit | 26ec070b09ceb798b471fd6999ae1da319120899 (patch) | |
tree | a434d96ad06f9fe7a8d2c445696c6036d2e63db3 /activerecord/lib | |
parent | 6754777adf02b62535e27298cff1abadc1d11a2d (diff) | |
download | rails-26ec070b09ceb798b471fd6999ae1da319120899.tar.gz rails-26ec070b09ceb798b471fd6999ae1da319120899.tar.bz2 rails-26ec070b09ceb798b471fd6999ae1da319120899.zip |
copy edits [ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/persistence.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb index 0107667fbe..611d3d97c3 100644 --- a/activerecord/lib/active_record/persistence.rb +++ b/activerecord/lib/active_record/persistence.rb @@ -197,7 +197,7 @@ module ActiveRecord end end - # Updates a single attribute of an object, without having to call save on that object. + # Updates a single attribute of an object, without having to explicitly call save on that object. # # * Validation is skipped. # * Callbacks are skipped. @@ -209,7 +209,7 @@ module ActiveRecord update_columns(name => value) end - # Updates the attributes from the passed-in hash, without having to call save on that object. + # Updates the attributes from the passed-in hash, without having to explicitly call save on that object. # # * Validation is skipped. # * Callbacks are skipped. |