diff options
author | Xavier Noria <fxn@hashref.com> | 2011-12-15 11:09:30 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-12-15 11:09:30 -0800 |
commit | 22bd21dc0fc0535f1de93d22569e8769c2e43949 (patch) | |
tree | 9dc973a384124da7d39bbe7df15d60c76830e8e2 /railties/lib/rails/engine.rb | |
parent | 1af2a1d0f569407a4b2b643c57a884920ec0fabc (diff) | |
parent | 4baf145375ee4ef712799b0c96c2aeadc5060015 (diff) | |
download | rails-22bd21dc0fc0535f1de93d22569e8769c2e43949.tar.gz rails-22bd21dc0fc0535f1de93d22569e8769c2e43949.tar.bz2 rails-22bd21dc0fc0535f1de93d22569e8769c2e43949.zip |
Merge pull request #3998 from rafacv/master
Small typo in Rails::Engine documentation
Diffstat (limited to 'railties/lib/rails/engine.rb')
-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. # |