diff options
author | Mikhail Dieterle <MikDiet@gmail.com> | 2012-03-04 14:37:25 +0800 |
---|---|---|
committer | Mikhail Dieterle <MikDiet@gmail.com> | 2012-03-04 14:37:25 +0800 |
commit | 78b40bba7b669296218149c5b2052b83c0104f00 (patch) | |
tree | bbc18d81039d8b23a58143122ca7a24cffef4c4b | |
parent | f9e26940b3f76a80ce0dc9f10fc49061abee6c41 (diff) | |
download | rails-78b40bba7b669296218149c5b2052b83c0104f00.tar.gz rails-78b40bba7b669296218149c5b2052b83c0104f00.tar.bz2 rails-78b40bba7b669296218149c5b2052b83c0104f00.zip |
typo
-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 e796f44606..06a2bbcf77 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 |