aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorTrotter Cashion <cashion@gmail.com>2012-01-19 13:09:16 -0800
committerTrotter Cashion <cashion@gmail.com>2012-01-19 13:09:16 -0800
commit018e4bff3c31575fc753a49220356db686f9c629 (patch)
tree03fe12533654af94060a4c10e0e33e76bbbdffa3 /railties
parent2c7ded31fb89c924bcb3a1b5f57d5c0f5b675ef1 (diff)
downloadrails-018e4bff3c31575fc753a49220356db686f9c629.tar.gz
rails-018e4bff3c31575fc753a49220356db686f9c629.tar.bz2
rails-018e4bff3c31575fc753a49220356db686f9c629.zip
Fix documentation bug in Rails::Engine
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/engine.rb2
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.
#