diff options
author | Oemuer Oezkir <oemuer.oezkir@gmail.com> | 2011-07-24 10:21:42 +0000 |
---|---|---|
committer | Oemuer Oezkir <oemuer.oezkir@gmail.com> | 2011-07-24 10:21:42 +0000 |
commit | 71d18ce48ebcb6b3380309a225af12aba2aeb8ed (patch) | |
tree | c4d3414b9db81ebe31178b0355a41b5f5dd9f031 /activerecord/lib/active_record | |
parent | 9b9cf92768614eb7dedd190e898b0062c083d8bf (diff) | |
download | rails-71d18ce48ebcb6b3380309a225af12aba2aeb8ed.tar.gz rails-71d18ce48ebcb6b3380309a225af12aba2aeb8ed.tar.bz2 rails-71d18ce48ebcb6b3380309a225af12aba2aeb8ed.zip |
Changed a few instances of of words in the API docs written in British English to
American English(according to Weber)
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/associations/collection_association.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/collection_association.rb b/activerecord/lib/active_record/associations/collection_association.rb index 3e68f973e7..cec876149c 100644 --- a/activerecord/lib/active_record/associations/collection_association.rb +++ b/activerecord/lib/active_record/associations/collection_association.rb @@ -382,7 +382,7 @@ module ActiveRecord persisted.map! do |record| # Unfortunately we cannot simply do memory.delete(record) since on 1.8 this returns - # record rather than memory.at(memory.index(record)). The behaviour is fixed in 1.9. + # record rather than memory.at(memory.index(record)). The behavior is fixed in 1.9. mem_index = memory.index(record) if mem_index |