aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-04-24 03:24:44 +0900
committerGitHub <noreply@github.com>2019-04-24 03:24:44 +0900
commit0920213cd5f112181a93966425267e240b96f125 (patch)
tree64daabb03bd4238855fc1c07928524dc6f5d8156 /activerecord
parentd33f5e55f1a5eb43bac7f9d603db8882b0070b84 (diff)
parent8c9c58e34dc4db376000ff62ca997a3d9e10689d (diff)
downloadrails-0920213cd5f112181a93966425267e240b96f125.tar.gz
rails-0920213cd5f112181a93966425267e240b96f125.tar.bz2
rails-0920213cd5f112181a93966425267e240b96f125.zip
Merge pull request #36070 from imechemi/fix-minor-api-doc
Minor API doc fix [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/associations/collection_proxy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/collection_proxy.rb b/activerecord/lib/active_record/associations/collection_proxy.rb
index edcb44f0fc..85e0f076da 100644
--- a/activerecord/lib/active_record/associations/collection_proxy.rb
+++ b/activerecord/lib/active_record/associations/collection_proxy.rb
@@ -1002,7 +1002,7 @@ module ActiveRecord
end
# Adds one or more +records+ to the collection by setting their foreign keys
- # to the association's primary key. Since +<<+ flattens its argument list and
+ # to the association's primary key. Since <tt><<</tt> flattens its argument list and
# inserts each record, +push+ and +concat+ behave identically. Returns +self+
# so several appends may be chained together.
#