diff options
-rw-r--r-- | actionpack/lib/action_controller/resources.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/resources.rb b/actionpack/lib/action_controller/resources.rb index a7e1a172cc..f0937dbcb8 100644 --- a/actionpack/lib/action_controller/resources.rb +++ b/actionpack/lib/action_controller/resources.rb @@ -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 } |