diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-09 00:07:59 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-09 00:07:59 +0530 |
commit | 188d1d27876018c492280059b3d721be9afcc231 (patch) | |
tree | 20037458a5814681e78858c93eef14cc893ffe44 /railties/guides/source/configuring.textile | |
parent | 085cb3b9af9d74fa9a3b72181f674f0b7c3dbf01 (diff) | |
parent | 97e7d43146b6edca19891d8c7ed6b4d93e7dad00 (diff) | |
download | rails-188d1d27876018c492280059b3d721be9afcc231.tar.gz rails-188d1d27876018c492280059b3d721be9afcc231.tar.bz2 rails-188d1d27876018c492280059b3d721be9afcc231.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 2f465b37ed..0ab1076fff 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -493,7 +493,7 @@ Rails has 5 initialization events which can be hooked into (listed in the order * +after_initialize+: Run directly after the initialization of the application, but before the application initializers are run. -To define an event for these hooks, use the block syntax within a +Rails::Aplication+, +Rails::Railtie+ or +Rails::Engine+ subclass: +To define an event for these hooks, use the block syntax within a +Rails::Application+, +Rails::Railtie+ or +Rails::Engine+ subclass: <ruby> module YourApp |