aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/config/routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/guides/code/getting_started/config/routes.rb')
-rw-r--r--railties/guides/code/getting_started/config/routes.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/guides/code/getting_started/config/routes.rb b/railties/guides/code/getting_started/config/routes.rb
index 31f0d210db..b048ac68f1 100644
--- a/railties/guides/code/getting_started/config/routes.rb
+++ b/railties/guides/code/getting_started/config/routes.rb
@@ -1,7 +1,7 @@
Blog::Application.routes.draw do
- resources :posts do
- resources :comments
- end
+ resources :posts do
+ resources :comments
+ end
get "home/index"
@@ -60,5 +60,5 @@ Blog::Application.routes.draw do
# This is a legacy wild controller route that's not recommended for RESTful applications.
# Note: This route will make all actions in every controller accessible via GET requests.
- # match ':controller(/:action(/:id(.:format)))'
+ # match ':controller(/:action(/:id))(.:format)'
end