diff options
author | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2019-04-09 10:28:34 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-09 10:28:34 +0530 |
commit | 496e8ee9370e9f165fd1f5d2620296299a6a8649 (patch) | |
tree | 731de078d063e6fbc2596d03e3f23d7649cf336b /activerecord | |
parent | e485c14a3ee29ee486324a96545abf964d428101 (diff) | |
parent | ab6da0c4a88480d932051f0a2f6dc0c96593d948 (diff) | |
download | rails-496e8ee9370e9f165fd1f5d2620296299a6a8649.tar.gz rails-496e8ee9370e9f165fd1f5d2620296299a6a8649.tar.bz2 rails-496e8ee9370e9f165fd1f5d2620296299a6a8649.zip |
Merge pull request #35903 from ryohashimoto/fix_upsert_method_comment
[ci skip] Fix `#upsert` method comment
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/persistence.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb index bf2f61737b..e05490753f 100644 --- a/activerecord/lib/active_record/persistence.rb +++ b/activerecord/lib/active_record/persistence.rb @@ -178,7 +178,7 @@ module ActiveRecord InsertAll.new(self, attributes, on_duplicate: :raise, returning: returning).execute end - # Updates or inserts (upserts) multiple records into the database in a + # Updates or inserts (upserts) a single record into the database in a # single SQL INSERT statement. It does not instantiate any models nor does # it trigger Active Record callbacks or validations. Though passed values # go through Active Record's type casting and serialization. |