aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEloy Duran <eloy.de.enige@gmail.com>2009-03-12 16:50:10 +0100
committerEloy Duran <eloy.de.enige@gmail.com>2009-03-12 16:50:10 +0100
commitde55c8d7453c5fdf385b5fef9228f3327afddfcf (patch)
tree1410912cb7e931ee83594c21daa91a2520799f73
parent8e277f89cdbf7266c700703e437525cc8ea35c1d (diff)
downloadrails-de55c8d7453c5fdf385b5fef9228f3327afddfcf.tar.gz
rails-de55c8d7453c5fdf385b5fef9228f3327afddfcf.tar.bz2
rails-de55c8d7453c5fdf385b5fef9228f3327afddfcf.zip
Fixed some spelling errors in documentation about AssociationCollection::destroy and AssociationCollection::destroy_all.
This time without the whitespace fixes and move of the destroy_all method.
-rw-r--r--activerecord/lib/active_record/associations/association_collection.rb14
1 files changed, 9 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/associations/association_collection.rb b/activerecord/lib/active_record/associations/association_collection.rb
index ad375be184..3aef1b21e9 100644
--- a/activerecord/lib/active_record/associations/association_collection.rb
+++ b/activerecord/lib/active_record/associations/association_collection.rb
@@ -143,6 +143,8 @@ module ActiveRecord
end
# Remove all records from this association
+ #
+ # See delete for more info.
def delete_all
load_target
delete(@target)
@@ -200,11 +202,11 @@ module ActiveRecord
end
end
- # Destroy +records+ and remove from this association calling +before_remove+
- # and +after_remove+ callbacks.
+ # Destroy +records+ and remove them from this association calling
+ # +before_remove+ and +after_remove+ callbacks.
#
- # Note this method will always remove records from database ignoring the
- # +:dependent+ option.
+ # Note that this method will _always_ remove records from the database
+ # ignoring the +:dependent+ option.
def destroy(*records)
remove_records(records) do |records, old_records|
old_records.each { |record| record.destroy }
@@ -226,7 +228,9 @@ module ActiveRecord
self
end
- # Destory all the records from this association
+ # Destory all the records from this association.
+ #
+ # See destroy for more info.
def destroy_all
load_target
destroy(@target)