From 7de21cc1c5ae899207f9aab9e111eda265bb2f32 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 8 Jun 2007 18:00:11 +0000 Subject: [PATCH] Fix typo in resources documentation. Closes #8607 [yon] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6971 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/resources.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }