diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-01-20 05:28:19 -0800 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-01-20 05:28:19 -0800 |
commit | 3e6e57e7fdcb008aeba2b7f9922fc9ff5b113ab5 (patch) | |
tree | 389cdcfc9fbe2c4efab21ae7993f252daf2db9b3 /railties | |
parent | eb1b7294083bf28367a2bf057c216c9bd1f0f106 (diff) | |
parent | 7b0312084d3f9faea9a137177a9711533a43f009 (diff) | |
download | rails-3e6e57e7fdcb008aeba2b7f9922fc9ff5b113ab5.tar.gz rails-3e6e57e7fdcb008aeba2b7f9922fc9ff5b113ab5.tar.bz2 rails-3e6e57e7fdcb008aeba2b7f9922fc9ff5b113ab5.zip |
Merge pull request #4545 from trotter/fix-documentation-bug
Fix documentation bug in Rails::Engine
Diffstat (limited to 'railties')
-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 20321a502d..77a68eb7f1 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::ApplicationController</tt>. Furthermore, you don't + # The routes above will automatically point to <tt>MyEngine::ArticlesController</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. # |