aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Gunderloy <MikeG1@larkfarm.com>2009-07-19 19:54:51 -0500
committerMike Gunderloy <MikeG1@larkfarm.com>2009-07-19 19:54:51 -0500
commit679a556294771c4b12728872180360ffe616b45a (patch)
tree5a691b5f57bed090a243462f8a369a312643650f
parent1c167cd6fb08c78e3b16d6a8e73a131412db70a8 (diff)
downloadrails-679a556294771c4b12728872180360ffe616b45a.tar.gz
rails-679a556294771c4b12728872180360ffe616b45a.tar.bz2
rails-679a556294771c4b12728872180360ffe616b45a.zip
Insert missing word in callbacks documentation.
-rw-r--r--activerecord/lib/active_record/callbacks.rb2
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: