diff options
author | Waseem Ahmad <talk.to.waseem@gmail.com> | 2012-03-15 16:07:53 +0530 |
---|---|---|
committer | Waseem Ahmad <talk.to.waseem@gmail.com> | 2012-03-15 16:07:53 +0530 |
commit | 55df1df937f096bbdae29f8af965f204f08943b8 (patch) | |
tree | 7b8f674186387543ddac2a657101cacb75120dec | |
parent | 18e1b5b8c5d7c5fd4a73a9f896f59e1ab03781bf (diff) | |
download | rails-55df1df937f096bbdae29f8af965f204f08943b8.tar.gz rails-55df1df937f096bbdae29f8af965f204f08943b8.tar.bz2 rails-55df1df937f096bbdae29f8af965f204f08943b8.zip |
Fix typo in AR Callbacks.
-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 a050fabf35..91d9b3f3d7 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 massage attributes + # dependent objects are deleted when +destroy+ is called (by overwriting +before_destroy+) or to message 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: # |