diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2009-07-19 19:54:51 -0500 |
---|---|---|
committer | Mike Gunderloy <MikeG1@larkfarm.com> | 2009-07-19 19:54:51 -0500 |
commit | 679a556294771c4b12728872180360ffe616b45a (patch) | |
tree | 5a691b5f57bed090a243462f8a369a312643650f /activerecord | |
parent | 1c167cd6fb08c78e3b16d6a8e73a131412db70a8 (diff) | |
download | rails-679a556294771c4b12728872180360ffe616b45a.tar.gz rails-679a556294771c4b12728872180360ffe616b45a.tar.bz2 rails-679a556294771c4b12728872180360ffe616b45a.zip |
Insert missing word in callbacks documentation.
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/callbacks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb index cf484507e9..0ad135e378 100644 --- a/activerecord/lib/active_record/callbacks.rb +++ b/activerecord/lib/active_record/callbacks.rb @@ -22,7 +22,7 @@ module ActiveRecord # * (8) <tt>after_save</tt> # # That's a total of eight callbacks, which gives you immense power to react and prepare for each state in the - # Active Record lifecycle. The sequence for calling <tt>Base#save</tt> an existing record is similar, except that each + # Active Record lifecycle. The sequence for calling <tt>Base#save</tt> for an existing record is similar, except that each # <tt>_on_create</tt> callback is replaced by the corresponding <tt>_on_update</tt> callback. # # Examples: |