diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-12-02 08:36:25 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-12-02 08:36:25 +1100 |
commit | 949eb91d0e771c14218f34f14cb4f00c09af60db (patch) | |
tree | 9c86f7415472c94219ce6bbfa737cb4501e10d2b /railties | |
parent | 3a3c812c282b2972632ac7699ff7ed58de3782ec (diff) | |
download | rails-949eb91d0e771c14218f34f14cb4f00c09af60db.tar.gz rails-949eb91d0e771c14218f34f14cb4f00c09af60db.tar.bz2 rails-949eb91d0e771c14218f34f14cb4f00c09af60db.zip |
Add missing colons on the end of before_initialize and after_initialize documentation in configuring guide
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index fcf7ba0ae5..a3e6f0b9be 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -332,8 +332,8 @@ Rails has 4 initialization events which can be hooked into (listed in order that * +before_configuration+: This is run as soon as the application constant inherits from +Rails::Application+. The +config+ calls are evaluated before this happens. * +before_eager_load+: This is run directly before eager loading occurs, which is the default behaviour for the _production_ environment and not for the +development+ enviroment. -* +before_initialize+ This is run directly before the initialization process of the application occurs. -* +after_initialize+ Run directly after the initialization of the application, but before the application initializers are run. +* +before_initialize+: This is run directly before the initialization process of the application occurs. +* +after_initialize+: Run directly after the initialization of the application, but before the application initializers are run. WARNING: Some parts of your application, notably observers and routing, are not yet set up at the point where the +after_initialize+ block is called. |