mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix typo in resources documentation. Closes #8607 [yon]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6971 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
c9397e684c
commit
7de21cc1c5
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ module ActionController
|
|||
# POST /posts # with => { :title => "My Whizzy New Post", :body => "I've got a brand new combine harvester" }
|
||||
#
|
||||
# # A PUT request on a single Post resource is asking for a Post to be updated
|
||||
# POST /posts # with => { :id => 1, :title => "Changed Whizzy Title" }
|
||||
# PUT /posts # with => { :id => 1, :title => "Changed Whizzy Title" }
|
||||
#
|
||||
# # A DELETE request on a single Post resource is asking for it to be deleted
|
||||
# DELETE /posts # with => { :id => 1 }
|
||||
|
|
Loading…
Reference in a new issue