diff options
author | Jonathan R. Wallace <jonathan.wallace@gmail.com> | 2012-03-17 11:23:39 -0400 |
---|---|---|
committer | Jonathan R. Wallace <jonathan.wallace@gmail.com> | 2012-03-17 11:23:39 -0400 |
commit | 9e09e8f5265017d695aae4a141ffeffaa8ae3705 (patch) | |
tree | 3e2e027c97e7f1c535c41ca20dcb320797f9ca1b /activerecord/lib | |
parent | 9d06b49913dd2a2254d87c7af1af9f1e4d7f64ec (diff) | |
download | rails-9e09e8f5265017d695aae4a141ffeffaa8ae3705.tar.gz rails-9e09e8f5265017d695aae4a141ffeffaa8ae3705.tar.bz2 rails-9e09e8f5265017d695aae4a141ffeffaa8ae3705.zip |
Updates 'modyfing' typo to 'modifying'
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. # |