diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-06-02 21:38:32 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-06-02 21:38:32 +0530 |
commit | 983687a9e55915c22b84b60b45ca2b40794cf9a2 (patch) | |
tree | e498da37e508e75ea0ddb6b62115a7f4cd2d0df4 /guides/code/getting_started/config | |
parent | faf550c1916550d62e64366d04a5222a5751d05b (diff) | |
download | rails-983687a9e55915c22b84b60b45ca2b40794cf9a2.tar.gz rails-983687a9e55915c22b84b60b45ca2b40794cf9a2.tar.bz2 rails-983687a9e55915c22b84b60b45ca2b40794cf9a2.zip |
fix up the example app for getting started guide [ci skip]
Diffstat (limited to 'guides/code/getting_started/config')
-rw-r--r-- | guides/code/getting_started/config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/code/getting_started/config/routes.rb b/guides/code/getting_started/config/routes.rb index a494d010a6..04a6bd374e 100644 --- a/guides/code/getting_started/config/routes.rb +++ b/guides/code/getting_started/config/routes.rb @@ -53,7 +53,7 @@ Blog::Application.routes.draw do # You can have the root of your site routed with "root" # just remember to delete public/index.html. - root :to => "home#index" + root :to => "welcome#index" # See how all your routes lay out with "rake routes" |