diff options
author | Sushruth Sivaramakrishnan <sivsushruth@gmail.com> | 2015-03-07 04:38:25 +0530 |
---|---|---|
committer | Sushruth Sivaramakrishnan <sivsushruth@gmail.com> | 2015-03-07 04:38:25 +0530 |
commit | 6fe13e52964cea6dadbb47c1601c2c11d2dd126f (patch) | |
tree | afe6d0188d161cd97db81ed94a3893ab85965a76 /activerecord | |
parent | 6a835e26d38ee61dc257505d52df9d0f6fb17e29 (diff) | |
download | rails-6fe13e52964cea6dadbb47c1601c2c11d2dd126f.tar.gz rails-6fe13e52964cea6dadbb47c1601c2c11d2dd126f.tar.bz2 rails-6fe13e52964cea6dadbb47c1601c2c11d2dd126f.zip |
Doc fix [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/associations/through_association.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/through_association.rb b/activerecord/lib/active_record/associations/through_association.rb index 3ce9cffdbc..af1bce523c 100644 --- a/activerecord/lib/active_record/associations/through_association.rb +++ b/activerecord/lib/active_record/associations/through_association.rb @@ -33,7 +33,7 @@ module ActiveRecord # Construct attributes for :through pointing to owner and associate. This is used by the # methods which create and delete records on the association. # - # We only support indirectly modifying through associations which has a belongs_to source. + # We only support indirectly modifying through associations which have a belongs_to source. # This is the "has_many :tags, through: :taggings" situation, where the join model # typically has a belongs_to on both side. In other words, associations which could also # be represented as has_and_belongs_to_many associations. |