diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-11-05 19:49:17 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-11-05 19:49:17 -0200 |
commit | 9ef88380afb9063a5ce5ba9b7f1126580c7c51ea (patch) | |
tree | 681b76a9be122a43d43d68d7a425bc4eeb697610 | |
parent | 223ed2b4832d63853b61ccb8e9ff82fcd835e61f (diff) | |
download | rails-9ef88380afb9063a5ce5ba9b7f1126580c7c51ea.tar.gz rails-9ef88380afb9063a5ce5ba9b7f1126580c7c51ea.tar.bz2 rails-9ef88380afb9063a5ce5ba9b7f1126580c7c51ea.zip |
Revert "fix white spaces"
This reverts commit 223ed2b4832d63853b61ccb8e9ff82fcd835e61f.
Reverting since rake routes right align named route. See some discussion in
https://github.com/lifo/docrails/commit/223ed2b4832d63853b61ccb8e9ff82fcd835e61f#commitcomment-2104595
-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 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 ``` |