aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorप्रथमेश Sonpatki <csonpatki@gmail.com>2019-04-09 10:28:34 +0530
committerGitHub <noreply@github.com>2019-04-09 10:28:34 +0530
commit496e8ee9370e9f165fd1f5d2620296299a6a8649 (patch)
tree731de078d063e6fbc2596d03e3f23d7649cf336b /activerecord
parente485c14a3ee29ee486324a96545abf964d428101 (diff)
parentab6da0c4a88480d932051f0a2f6dc0c96593d948 (diff)
downloadrails-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.rb2
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.