diff options
author | Mark Larimer <mark.d.larimer@gmail.com> | 2012-03-16 11:54:44 -0500 |
---|---|---|
committer | Mark Larimer <mark.d.larimer@gmail.com> | 2012-03-16 11:54:44 -0500 |
commit | 9dba310b1e03fc292071b39bc0cb60618c765324 (patch) | |
tree | 3c19f79a4146e36177ee0a1962877a9d8c306e48 | |
parent | a1c77e7d947cf61ae01869075282c66816add419 (diff) | |
download | rails-9dba310b1e03fc292071b39bc0cb60618c765324.tar.gz rails-9dba310b1e03fc292071b39bc0cb60618c765324.tar.bz2 rails-9dba310b1e03fc292071b39bc0cb60618c765324.zip |
Revert "Fix typo in AR Callbacks."
This reverts commit 55df1df937f096bbdae29f8af965f204f08943b8.
-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 91d9b3f3d7..a050fabf35 100644 --- a/activerecord/lib/active_record/callbacks.rb +++ b/activerecord/lib/active_record/callbacks.rb @@ -3,7 +3,7 @@ module ActiveRecord # # Callbacks are hooks into the life cycle of an Active Record object that allow you to trigger logic # before or after an alteration of the object state. This can be used to make sure that associated and - # dependent objects are deleted when +destroy+ is called (by overwriting +before_destroy+) or to message attributes + # dependent objects are deleted when +destroy+ is called (by overwriting +before_destroy+) or to massage attributes # before they're validated (by overwriting +before_validation+). As an example of the callbacks initiated, consider # the <tt>Base#save</tt> call for a new record: # |