diff options
author | Mikhail Dieterle <MikDiet@gmail.com> | 2012-03-04 14:37:25 +0800 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-09 00:21:53 +0530 |
commit | 1f2224da7751017767fa9bf5ad52e12ee5489801 (patch) | |
tree | f3dd8d085398255e27693dca7eba83109df38b55 /railties/guides/source | |
parent | e63f04cc0c7d517010f1d6840680b46e69dc75a9 (diff) | |
download | rails-1f2224da7751017767fa9bf5ad52e12ee5489801.tar.gz rails-1f2224da7751017767fa9bf5ad52e12ee5489801.tar.bz2 rails-1f2224da7751017767fa9bf5ad52e12ee5489801.zip |
typo
Diffstat (limited to 'railties/guides/source')
-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 98582946b4..11dbba0e3d 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -481,7 +481,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 |