diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-17 21:15:36 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-17 21:15:36 +0530 |
commit | 6ce54d4ba8c220a84e55e7dd798d364c3f48d9f7 (patch) | |
tree | 12c467871bf915b7146e8499bffcaf3574435f31 /activerecord/lib | |
parent | f9872207564c9c9dd5b4c7ecf02f2387cbceed9a (diff) | |
parent | 9e09e8f5265017d695aae4a141ffeffaa8ae3705 (diff) | |
download | rails-6ce54d4ba8c220a84e55e7dd798d364c3f48d9f7.tar.gz rails-6ce54d4ba8c220a84e55e7dd798d364c3f48d9f7.tar.bz2 rails-6ce54d4ba8c220a84e55e7dd798d364c3f48d9f7.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/autosave_association.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/autosave_association.rb b/activerecord/lib/active_record/autosave_association.rb index be0af081d1..01d25b8867 100644 --- a/activerecord/lib/active_record/autosave_association.rb +++ b/activerecord/lib/active_record/autosave_association.rb @@ -28,7 +28,7 @@ module ActiveRecord # Association with autosave option defines several callbacks on your # model (before_save, after_create, after_update). Please note that # callbacks are executed in the order they were defined in - # model. You should avoid modyfing the association content, before + # model. You should avoid modifying the association content, before # autosave callbacks are executed. Placing your callbacks after # associations is usually a good practice. # |