diff options
author | Jon Moss <me@jonathanmoss.me> | 2016-05-21 10:43:18 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2016-05-21 10:43:18 -0400 |
commit | 355f68bcbff7cdd0372cb0c14ba261a523b189cc (patch) | |
tree | 39f870e83663d26ad8a0a9e3a03dd09901a7e8fe /activerecord/lib/active_record/associations | |
parent | 809236bc4c608e50262de4f82df79b45da1df2d4 (diff) | |
download | rails-355f68bcbff7cdd0372cb0c14ba261a523b189cc.tar.gz rails-355f68bcbff7cdd0372cb0c14ba261a523b189cc.tar.bz2 rails-355f68bcbff7cdd0372cb0c14ba261a523b189cc.zip |
Add missing `the`
[ci skip]
Diffstat (limited to 'activerecord/lib/active_record/associations')
-rw-r--r-- | activerecord/lib/active_record/associations/collection_association.rb | 4 |
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 2dca6b612e..60373210ec 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 |