aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikac.hu>2019-03-06 11:23:31 +0900
committerGitHub <noreply@github.com>2019-03-06 11:23:31 +0900
commitb366be3b5b28f01c8a55d67a5161ec36f53d555c (patch)
treed9a749b2ea94daa9e10b9600ac5a03288e65ba3b
parent4353adab89bab252521e0e191d0177ece1538fbb (diff)
parent664685680cb94002ab7e9dd074845b86213cfa86 (diff)
downloadrails-b366be3b5b28f01c8a55d67a5161ec36f53d555c.tar.gz
rails-b366be3b5b28f01c8a55d67a5161ec36f53d555c.tar.bz2
rails-b366be3b5b28f01c8a55d67a5161ec36f53d555c.zip
Merge pull request #35491 from abhaynikam/35077-fix-insert-many-doc-typo
[ci skip] Fix typo `beacuse` -> `because`
-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 069bd75a71..72ccf7739f 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -173,7 +173,7 @@ module ActiveRecord
# { title: 'Eloquent Ruby', author: 'Russ' }
# ])
#
- # # raises ActiveRecord::RecordNotUnique beacuse 'Eloquent Ruby'
+ # # raises ActiveRecord::RecordNotUnique because 'Eloquent Ruby'
# # does not have a unique ID
# Book.insert_all!([
# { id: 1, title: 'Rework', author: 'David' },