diff options
author | Damir <damirz@gmail.com> | 2016-03-10 15:01:27 +0100 |
---|---|---|
committer | Damir <damirz@gmail.com> | 2016-03-10 15:01:27 +0100 |
commit | 40f6d200cf603de4bade3782663b28015baffcf6 (patch) | |
tree | 939b3a197c2af169efb03ed271fa596255c295f6 /actionpack | |
parent | d9b42cfd347508604ed5417c3aa91eb0be3dcb8d (diff) | |
download | rails-40f6d200cf603de4bade3782663b28015baffcf6.tar.gz rails-40f6d200cf603de4bade3782663b28015baffcf6.tar.bz2 rails-40f6d200cf603de4bade3782663b28015baffcf6.zip |
[skip ci] Reorder paragraphs
The previous order made sense [when `match` was used twice to point to two different actions](https://github.com/rails/rails/commit/7305ef842b675bf965f063de681a96294577fb84). In this case the note was misleading as posting to `/posts/:id` would still route to `show` action.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/routing.rb b/actionpack/lib/action_dispatch/routing.rb index dcf800b215..79d2f1f13c 100644 --- a/actionpack/lib/action_dispatch/routing.rb +++ b/actionpack/lib/action_dispatch/routing.rb @@ -73,14 +73,14 @@ module ActionDispatch # get 'post/:id' => 'posts#show' # post 'post/:id' => 'posts#create_comment' # + # Now, if you POST to <tt>/posts/:id</tt>, it will route to the <tt>create_comment</tt> action. A GET on the same + # URL will route to the <tt>show</tt> action. + # # If your route needs to respond to more than one HTTP method (or all methods) then using the # <tt>:via</tt> option on <tt>match</tt> is preferable. # # match 'post/:id' => 'posts#show', via: [:get, :post] # - # Now, if you POST to <tt>/posts/:id</tt>, it will route to the <tt>create_comment</tt> action. A GET on the same - # URL will route to the <tt>show</tt> action. - # # == Named routes # # Routes can be named by passing an <tt>:as</tt> option, |