diff options
author | Accessd <accessd0@gmail.com> | 2012-07-31 18:10:41 +0400 |
---|---|---|
committer | Accessd <accessd0@gmail.com> | 2012-07-31 18:10:41 +0400 |
commit | db25ca7ec446e4142097d6cc4d80c21ea426398d (patch) | |
tree | 971c69dfabebe3310cde37f0542ee0499cee013a | |
parent | ab53cc7b2eee86152f20aea6c968d74d1c747c4e (diff) | |
download | rails-db25ca7ec446e4142097d6cc4d80c21ea426398d.tar.gz rails-db25ca7ec446e4142097d6cc4d80c21ea426398d.tar.bz2 rails-db25ca7ec446e4142097d6cc4d80c21ea426398d.zip |
fix ActiveRecord::Associations::CollectionProxy documentation
-rw-r--r-- | activerecord/lib/active_record/associations/collection_proxy.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/collection_proxy.rb b/activerecord/lib/active_record/associations/collection_proxy.rb index 2fb80fdc4c..89f24b2c43 100644 --- a/activerecord/lib/active_record/associations/collection_proxy.rb +++ b/activerecord/lib/active_record/associations/collection_proxy.rb @@ -346,7 +346,7 @@ module ActiveRecord # :call-seq: # delete_all() # - # Deletes all the records from the collection. For +has_many+ asssociations, + # Deletes all the records from the collection. For +has_many+ associations, # the deletion is done according to the strategy specified by the <tt>:dependent</tt> # option. Returns an array with the deleted records. # |