aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_through_association.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-08-28 23:18:57 +0000
committerMichael Koziarski <michael@koziarski.com>2007-08-28 23:18:57 +0000
commit18a3333a30b406633e2bb6fa5b87ada25ce7571d (patch)
tree30d5a1a6fb6e2205a395b3154b052716cd25ed88 /activerecord/lib/active_record/associations/has_many_through_association.rb
parentc11ca0e0bfec41215da2c19b2a09435da2e4450e (diff)
downloadrails-18a3333a30b406633e2bb6fa5b87ada25ce7571d.tar.gz
rails-18a3333a30b406633e2bb6fa5b87ada25ce7571d.tar.bz2
rails-18a3333a30b406633e2bb6fa5b87ada25ce7571d.zip
Formatting, grammar and spelling fixes for the associations documentation. [seanhussey] Closes #8899
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7368 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/associations/has_many_through_association.rb')
-rw-r--r--activerecord/lib/active_record/associations/has_many_through_association.rb2
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 ec093548da..de0d7cc8a9 100644
--- a/activerecord/lib/active_record/associations/has_many_through_association.rb
+++ b/activerecord/lib/active_record/associations/has_many_through_association.rb
@@ -67,7 +67,7 @@ module ActiveRecord
[:push, :concat].each { |method| alias_method method, :<< }
- # Remove +records+ from this association. Does not destroy +records+.
+ # Removes +records+ from this association. Does not destroy +records+.
def delete(*records)
records = flatten_deeper(records)
records.each { |associate| raise_on_type_mismatch(associate) }