aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJaime Iniesta <jaimeiniesta@gmail.com>2010-08-26 09:55:26 +0200
committerXavier Noria <fxn@hashref.com>2010-08-26 14:23:58 +0200
commit5430f5bd06ba71a11479bc83eda38e0d7302ecea (patch)
tree1108e2cd8c5c1eaa172c00497bc8e6f8a65ce4e0 /activesupport
parentd9f6e1693751b619cd2dffe4ca202bd5f493c90c (diff)
downloadrails-5430f5bd06ba71a11479bc83eda38e0d7302ecea.tar.gz
rails-5430f5bd06ba71a11479bc83eda38e0d7302ecea.tar.bz2
rails-5430f5bd06ba71a11479bc83eda38e0d7302ecea.zip
lifecycle should be two words, life cycle
Diffstat (limited to 'activesupport')
-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.