aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorTenzin Chemi <imechemi@gmail.com>2019-04-23 23:37:22 +0530
committerTenzin Chemi <imechemi@gmail.com>2019-04-23 23:37:22 +0530
commit8c9c58e34dc4db376000ff62ca997a3d9e10689d (patch)
tree9579e188b70ac8f340896e4afd7e8274c450ba9d /activerecord/lib/active_record
parentdf35204ed190086ec95b308ac1764571344005a6 (diff)
downloadrails-8c9c58e34dc4db376000ff62ca997a3d9e10689d.tar.gz
rails-8c9c58e34dc4db376000ff62ca997a3d9e10689d.tar.bz2
rails-8c9c58e34dc4db376000ff62ca997a3d9e10689d.zip
Fix rdoc rendering for push alias symbol
Diffstat (limited to 'activerecord/lib/active_record')
-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.
#