aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/callbacks.rb
diff options
context:
space:
mode:
authorJaime Iniesta <jaimeiniesta@gmail.com>2010-08-26 09:55:26 +0200
committerJaime Iniesta <jaimeiniesta@gmail.com>2010-08-26 09:55:26 +0200
commitfa1ba5bd5bbcdfc82104a2b88fb25d2f3695a525 (patch)
tree91bb8e0324fb6485b8a93bd256eca00aec1eb522 /activesupport/lib/active_support/callbacks.rb
parent5e73ab0936b492aec24f41be269e0ae481287df0 (diff)
downloadrails-fa1ba5bd5bbcdfc82104a2b88fb25d2f3695a525.tar.gz
rails-fa1ba5bd5bbcdfc82104a2b88fb25d2f3695a525.tar.bz2
rails-fa1ba5bd5bbcdfc82104a2b88fb25d2f3695a525.zip
lifecycle should be two words, life cycle
Diffstat (limited to 'activesupport/lib/active_support/callbacks.rb')
-rw-r--r--activesupport/lib/active_support/callbacks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index 09ddd7da83..d811c3b2f0 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -5,7 +5,7 @@ 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.