aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-05-21 12:47:39 -0300
committerRafael França <rafaelmfranca@gmail.com>2016-05-21 12:47:39 -0300
commitcf403266e500e62daca398a97039d889b8cd4517 (patch)
tree65ca32120fc97895a3c8185ffd2f03484572e51b /activerecord
parentc0d4aa2293db9d2a5c69a57920edcd4f43776e91 (diff)
parent355f68bcbff7cdd0372cb0c14ba261a523b189cc (diff)
downloadrails-cf403266e500e62daca398a97039d889b8cd4517.tar.gz
rails-cf403266e500e62daca398a97039d889b8cd4517.tar.bz2
rails-cf403266e500e62daca398a97039d889b8cd4517.zip
Merge pull request #24862 from maclover7/jm-ar-fixes
Add missing `the`
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/associations/collection_association.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations/collection_association.rb b/activerecord/lib/active_record/associations/collection_association.rb
index 6d06ce5c6c..0eaa0a4f36 100644
--- a/activerecord/lib/active_record/associations/collection_association.rb
+++ b/activerecord/lib/active_record/associations/collection_association.rb
@@ -10,9 +10,9 @@ module ActiveRecord
# HasManyAssociation => has_many
# HasManyThroughAssociation + ThroughAssociation => has_many :through
#
- # CollectionAssociation class provides common methods to the collections
+ # The CollectionAssociation class provides common methods to the collections
# defined by +has_and_belongs_to_many+, +has_many+ or +has_many+ with
- # +:through association+ option.
+ # the +:through association+ option.
#
# You need to be careful with assumptions regarding the target: The proxy
# does not fetch records from the database until it needs them, but new