aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorCarson McDonald <carson@ioncannon.net>2013-03-05 07:10:41 -0500
committerCarson McDonald <carson@ioncannon.net>2013-03-05 07:10:41 -0500
commitb9b609e00d534b7203a443205e1db7ec9a3ddba8 (patch)
treeb8176eadb31efe056d191350a37f6054a5a10451 /activerecord
parent55269f9849154b20cfb927cb8db246c1b2270207 (diff)
downloadrails-b9b609e00d534b7203a443205e1db7ec9a3ddba8.tar.gz
rails-b9b609e00d534b7203a443205e1db7ec9a3ddba8.tar.bz2
rails-b9b609e00d534b7203a443205e1db7ec9a3ddba8.zip
Fix typo
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/associations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 513d1012ba..35e4eb19a4 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -1115,7 +1115,7 @@ module ActiveRecord
# :dependent behavior may affect other callbacks.
#
# * <tt>:destroy</tt> causes all the associated objects to also be destroyed
- # * <tt>:delete_all</tt> causes all the asssociated objects to be deleted directly from the database (so callbacks will not execute)
+ # * <tt>:delete_all</tt> causes all the associated objects to be deleted directly from the database (so callbacks will not execute)
# * <tt>:nullify</tt> causes the foreign keys to be set to +NULL+. Callbacks are not executed.
# * <tt>:restrict_with_exception</tt> causes an exception to be raised if there are any associated records
# * <tt>:restrict_with_error</tt> causes an error to be added to the owner if there are any associated objects