diff options
author | Henrik N <henrik@nyh.se> | 2012-09-16 12:22:36 +0200 |
---|---|---|
committer | Henrik N <henrik@nyh.se> | 2012-09-16 12:24:19 +0200 |
commit | 5853f6223c808f05854745ec1199e442680afd3f (patch) | |
tree | 8578efbef931b69445ff256814d4c286764e10cb /activerecord | |
parent | ecaf728774aa5f4232cc17532272408f9a9819b7 (diff) | |
download | rails-5853f6223c808f05854745ec1199e442680afd3f.tar.gz rails-5853f6223c808f05854745ec1199e442680afd3f.tar.bz2 rails-5853f6223c808f05854745ec1199e442680afd3f.zip |
Doc typo: depenent -> dependent; trailing ws.
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 203ddd17c7..577b87e708 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -949,10 +949,10 @@ module ActiveRecord # is done. For more information, see the documentation for this option on the different # specific association types. When no option is given, the behaviour is to do nothing # with the associated records when destroying a record. - # + # # Note that <tt>:dependent</tt> is implemented using Rails' callback # system, which works by processing callbacks in order. Therefore, other - # callbacks declared either before or after the <tt>:depenent</tt> option + # callbacks declared either before or after the <tt>:dependent</tt> option # can affect what it does. # # === Delete or destroy? |