diff options
author | Benjamin Manns <benmanns@gmail.com> | 2012-01-20 09:11:20 -0800 |
---|---|---|
committer | Benjamin Manns <benmanns@gmail.com> | 2012-01-20 09:11:20 -0800 |
commit | 253ef4f0a83d103d3247e76701f4fc399159540a (patch) | |
tree | cda3f14e63a9fd5a583babe08adbae91af969aa7 /railties | |
parent | 83e891cf94d7e03e979f3d565c717ab2726dac00 (diff) | |
parent | 018e4bff3c31575fc753a49220356db686f9c629 (diff) | |
download | rails-253ef4f0a83d103d3247e76701f4fc399159540a.tar.gz rails-253ef4f0a83d103d3247e76701f4fc399159540a.tar.bz2 rails-253ef4f0a83d103d3247e76701f4fc399159540a.zip |
Merge pull request #78 from trotter/fix-rails-engine-docs
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. # |