diff options
author | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-08-26 09:55:26 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-08-26 14:23:58 +0200 |
commit | 5430f5bd06ba71a11479bc83eda38e0d7302ecea (patch) | |
tree | 1108e2cd8c5c1eaa172c00497bc8e6f8a65ce4e0 /activesupport/lib | |
parent | d9f6e1693751b619cd2dffe4ca202bd5f493c90c (diff) | |
download | rails-5430f5bd06ba71a11479bc83eda38e0d7302ecea.tar.gz rails-5430f5bd06ba71a11479bc83eda38e0d7302ecea.tar.bz2 rails-5430f5bd06ba71a11479bc83eda38e0d7302ecea.zip |
lifecycle should be two words, life cycle
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 2 |
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. |