lib/active_support/callbacks.rb in activesupport-3.0.0.rc2 vs lib/active_support/callbacks.rb in activesupport-3.0.0
- old
+ new
@@ -3,10 +3,10 @@
require 'active_support/core_ext/class/inheritable_attributes'
require 'active_support/core_ext/kernel/reporting'
require 'active_support/core_ext/kernel/singleton_class'
module ActiveSupport
- # Callbacks are hooks into the lifecycle of an object that allow you to trigger logic
+ # Callbacks are hooks into the life cycle of an object that allow you to trigger logic
# before or after an alteration of the object state.
#
# Mixing in this module allows you to define callbacks in your class.
#
# Example: