aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
Diffstat (limited to 'guides')
-rw-r--r--guides/source/routing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md
index 851d150421..469fcf49fb 100644
--- a/guides/source/routing.md
+++ b/guides/source/routing.md
@@ -925,9 +925,9 @@ Both methods will list all of your routes, in the same order that they appear in
For example, here's a small section of the `rake routes` output for a RESTful route:
```
-users GET /users(.:format) users#index
+ users GET /users(.:format) users#index
POST /users(.:format) users#create
-new_user GET /users/new(.:format) users#new
+ new_user GET /users/new(.:format) users#new
edit_user GET /users/:id/edit(.:format) users#edit
```