aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/callbacks.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-02-27 05:10:04 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-02-27 05:10:04 +0000
commitadccb319e27190a3a90d321db1141a057aec1d38 (patch)
tree216cc11c3e451b50c65d822f28c0465104270a92 /activerecord/lib/active_record/callbacks.rb
parent8203a2afc1b43ca884675a1bc30d0023e9c19c99 (diff)
downloadrails-adccb319e27190a3a90d321db1141a057aec1d38.tar.gz
rails-adccb319e27190a3a90d321db1141a057aec1d38.tar.bz2
rails-adccb319e27190a3a90d321db1141a057aec1d38.zip
doc fix (closes #3972) [robby]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3682 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/callbacks.rb')
-rwxr-xr-xactiverecord/lib/active_record/callbacks.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb
index aa3aa2d1a5..2ffb52ad00 100755
--- a/activerecord/lib/active_record/callbacks.rb
+++ b/activerecord/lib/active_record/callbacks.rb
@@ -13,15 +13,15 @@ module ActiveRecord
# * (2) before_validation_on_create
# * (-) validate
# * (-) validate_on_create
- # * (4) after_validation
- # * (5) after_validation_on_create
- # * (6) before_save
- # * (7) before_create
+ # * (3) after_validation
+ # * (4) after_validation_on_create
+ # * (5) before_save
+ # * (6) before_create
# * (-) create
- # * (8) after_create
- # * (9) after_save
+ # * (7) after_create
+ # * (8) after_save
#
- # That's a total of nine callbacks, which gives you immense power to react and prepare for each state in the
+ # That's a total of eight callbacks, which gives you immense power to react and prepare for each state in the
# Active Record lifecycle.
#
# Examples: