diff options
author | Carson McDonald <carson@ioncannon.net> | 2013-03-05 07:10:41 -0500 |
---|---|---|
committer | Carson McDonald <carson@ioncannon.net> | 2013-03-05 07:10:41 -0500 |
commit | b9b609e00d534b7203a443205e1db7ec9a3ddba8 (patch) | |
tree | b8176eadb31efe056d191350a37f6054a5a10451 /activerecord | |
parent | 55269f9849154b20cfb927cb8db246c1b2270207 (diff) | |
download | rails-b9b609e00d534b7203a443205e1db7ec9a3ddba8.tar.gz rails-b9b609e00d534b7203a443205e1db7ec9a3ddba8.tar.bz2 rails-b9b609e00d534b7203a443205e1db7ec9a3ddba8.zip |
Fix typo
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 2 |
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 |