diff options
author | Cesar Carruitero <cesar@mozilla.pe> | 2012-11-05 15:28:58 -0500 |
---|---|---|
committer | Cesar Carruitero <cesar@mozilla.pe> | 2012-11-05 15:28:58 -0500 |
commit | 223ed2b4832d63853b61ccb8e9ff82fcd835e61f (patch) | |
tree | 6fa70ac39faf84b54256350e94ad90a7a56a5858 | |
parent | ebc18cf29145966a25ee417d0ae46e06ea3c01ed (diff) | |
download | rails-223ed2b4832d63853b61ccb8e9ff82fcd835e61f.tar.gz rails-223ed2b4832d63853b61ccb8e9ff82fcd835e61f.tar.bz2 rails-223ed2b4832d63853b61ccb8e9ff82fcd835e61f.zip |
fix white spaces
-rw-r--r-- | guides/source/routing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index 469fcf49fb..851d150421 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 ``` |