aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/config/routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'guides/code/getting_started/config/routes.rb')
-rw-r--r--guides/code/getting_started/config/routes.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/code/getting_started/config/routes.rb b/guides/code/getting_started/config/routes.rb
index 9950568629..65d273b58d 100644
--- a/guides/code/getting_started/config/routes.rb
+++ b/guides/code/getting_started/config/routes.rb
@@ -1,7 +1,7 @@
-Blog::Application.routes.draw do
+Rails.application.routes.draw do
resources :posts do
resources :comments
end
-
- root to: "welcome#index"
+
+ root "welcome#index"
end