diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-06-08 18:00:11 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-06-08 18:00:11 +0000 |
commit | 7de21cc1c5ae899207f9aab9e111eda265bb2f32 (patch) | |
tree | 8df1edbeb07a5b48c13bb2956fbe84a410cf57f8 /actionpack/lib/action_controller | |
parent | c9397e684c081ce7245efcfa7962f03203574f36 (diff) | |
download | rails-7de21cc1c5ae899207f9aab9e111eda265bb2f32.tar.gz rails-7de21cc1c5ae899207f9aab9e111eda265bb2f32.tar.bz2 rails-7de21cc1c5ae899207f9aab9e111eda265bb2f32.zip |
Fix typo in resources documentation. Closes #8607 [yon]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6971 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller')
-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 } |