1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed small typo in the Rails::Engine documentation.

This commit is contained in:
Rafael Valverde 2011-12-15 17:03:19 -02:00
parent 26e7400cc5
commit 4baf145375

View file

@ -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.
#