diff options
author | Fred Wu <ifredwu@gmail.com> | 2014-05-06 21:54:34 +1000 |
---|---|---|
committer | Fred Wu <ifredwu@gmail.com> | 2014-05-06 21:54:34 +1000 |
commit | fe126f103c0c7f081fc5cc6e2e3b60ecae84aa91 (patch) | |
tree | cf9d5b9ee26ef1930d1cc30de44d4bf63bb14456 /activerecord/lib/active_record/associations | |
parent | b13c2aa754bcafdac0f703b277b2a615d217a0a3 (diff) | |
download | rails-fe126f103c0c7f081fc5cc6e2e3b60ecae84aa91.tar.gz rails-fe126f103c0c7f081fc5cc6e2e3b60ecae84aa91.tar.bz2 rails-fe126f103c0c7f081fc5cc6e2e3b60ecae84aa91.zip |
Fixed grammar
Diffstat (limited to 'activerecord/lib/active_record/associations')
-rw-r--r-- | activerecord/lib/active_record/associations/has_many_through_association.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/has_many_through_association.rb b/activerecord/lib/active_record/associations/has_many_through_association.rb index f3af8605cd..cdabf02b95 100644 --- a/activerecord/lib/active_record/associations/has_many_through_association.rb +++ b/activerecord/lib/active_record/associations/has_many_through_association.rb @@ -72,7 +72,7 @@ module ActiveRecord @through_association ||= owner.association(through_reflection.name) end - # We temporarily cache through record that has been build, because if we build a + # We temporarily cache through record that has been built, because if we build a # through record in build_record and then subsequently call insert_record, then we # want to use the exact same object. # |