diff options
author | Rafael Valverde <rafacvo@gmail.com> | 2011-12-15 17:03:19 -0200 |
---|---|---|
committer | Rafael Valverde <rafacvo@gmail.com> | 2011-12-15 17:03:19 -0200 |
commit | 4baf145375ee4ef712799b0c96c2aeadc5060015 (patch) | |
tree | f591a6ced809875899c16371117e115f409bf37f /railties/lib/rails | |
parent | 26e7400cc5415dbce5e2c5d13da96ad8c25749e2 (diff) | |
download | rails-4baf145375ee4ef712799b0c96c2aeadc5060015.tar.gz rails-4baf145375ee4ef712799b0c96c2aeadc5060015.tar.bz2 rails-4baf145375ee4ef712799b0c96c2aeadc5060015.zip |
Fixed small typo in the Rails::Engine documentation.
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/engine.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index fa27564c63..20321a502d 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -228,7 +228,7 @@ module Rails # resources :articles # end # - # The routes above will automatically point to <tt>MyEngine::ApplicationContoller</tt>. Furthermore, you don't + # The routes above will automatically point to <tt>MyEngine::ApplicationController</tt>. Furthermore, you don't # need to use longer url helpers like <tt>my_engine_articles_path</tt>. Instead, you should simply use # <tt>articles_path</tt> as you would do with your application. # |