diff options
author | Accessd <accessd0@gmail.com> | 2012-07-31 17:37:33 +0400 |
---|---|---|
committer | Accessd <accessd0@gmail.com> | 2012-07-31 17:37:33 +0400 |
commit | 7dae39a743c4592cfce31152d501d1d2f30bb55c (patch) | |
tree | b055178c8fabd48bf71996d6f2380b4e320df431 /activerecord/lib | |
parent | 0e3c66691af35fb59b1a0e91f0f1cfa00a7b9537 (diff) | |
download | rails-7dae39a743c4592cfce31152d501d1d2f30bb55c.tar.gz rails-7dae39a743c4592cfce31152d501d1d2f30bb55c.tar.bz2 rails-7dae39a743c4592cfce31152d501d1d2f30bb55c.zip |
fix typo in collection proxy
Diffstat (limited to 'activerecord/lib')
-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 49891f7675..ab6a4ed86c 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. # |