diff options
author | ganesh <ganesh.dc@gmail.com> | 2011-06-10 15:53:55 +0530 |
---|---|---|
committer | ganesh <ganesh.dc@gmail.com> | 2011-06-10 15:53:55 +0530 |
commit | 262a42b12ec188c14839d9b352ba545058221f4f (patch) | |
tree | 6001a851707d508d31a9ab7b953fdfab49fb50fc /actionpack/lib/action_dispatch | |
parent | 1395b30803527bccd1f5c248092b54424176eca8 (diff) | |
download | rails-262a42b12ec188c14839d9b352ba545058221f4f.tar.gz rails-262a42b12ec188c14839d9b352ba545058221f4f.tar.bz2 rails-262a42b12ec188c14839d9b352ba545058221f4f.zip |
shallow_path example updated
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index ec76d1da1e..6d6bde1449 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -1102,9 +1102,9 @@ module ActionDispatch # # The +comments+ resource here will have the following routes generated for it: # - # post_comments GET /sekret/posts/:post_id/comments(.:format) - # post_comments POST /sekret/posts/:post_id/comments(.:format) - # new_post_comment GET /sekret/posts/:post_id/comments/new(.:format) + # post_comments GET /posts/:post_id/comments(.:format) + # post_comments POST /posts/:post_id/comments(.:format) + # new_post_comment GET /posts/:post_id/comments/new(.:format) # edit_comment GET /sekret/comments/:id/edit(.:format) # comment GET /sekret/comments/:id(.:format) # comment PUT /sekret/comments/:id(.:format) |