aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-19 00:48:43 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-19 00:48:43 -0500
commit970a1469977690a1396741272049ff76f737fbb1 (patch)
tree4763cad1adf5b068e14ac1f2177ee5b4715fc4c0 /activerecord
parentbb887b92f8ed119641d68487cef1b5b34b2518a1 (diff)
downloadrails-970a1469977690a1396741272049ff76f737fbb1.tar.gz
rails-970a1469977690a1396741272049ff76f737fbb1.tar.bz2
rails-970a1469977690a1396741272049ff76f737fbb1.zip
fix CollectionProxy#<< documentation
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 54e497fdca..2f6cae50e4 100644
--- a/activerecord/lib/active_record/associations/collection_proxy.rb
+++ b/activerecord/lib/active_record/associations/collection_proxy.rb
@@ -239,7 +239,7 @@ module ActiveRecord
alias_method :to_a, :to_ary
# Adds one or more +records+ to the collection by setting their foreign keys
- # to the collection‘s primary key. Returns +self+, so several appends may be
+ # to the association‘s primary key. Returns +self+, so several appends may be
# chained together.
#
# class Person < ActiveRecord::Base