aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/lib/active_resource
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2008-01-02 19:27:21 +0000
committerRick Olson <technoweenie@gmail.com>2008-01-02 19:27:21 +0000
commit4261b837f5a0f34395b168d3697a2c1013a4e5d9 (patch)
tree735b80fc49540435e854e760b06fd5eb2654a45d /activeresource/lib/active_resource
parent14f6440ed60a3e6bfa263cc30f10547ca52db64f (diff)
downloadrails-4261b837f5a0f34395b168d3697a2c1013a4e5d9.tar.gz
rails-4261b837f5a0f34395b168d3697a2c1013a4e5d9.tar.bz2
rails-4261b837f5a0f34395b168d3697a2c1013a4e5d9.zip
Fix small documentation typo. Closes #10670 [l.guidi]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8528 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activeresource/lib/active_resource')
-rw-r--r--activeresource/lib/active_resource/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb
index 25776265e9..eea6259a64 100644
--- a/activeresource/lib/active_resource/base.rb
+++ b/activeresource/lib/active_resource/base.rb
@@ -47,7 +47,7 @@ module ActiveResource
#
# Since simple CRUD/lifecycle methods can't accomplish every task, Active Resource also supports
# defining your own custom REST methods. To invoke them, Active Resource provides the <tt>get</tt>,
- # <tt>post</tt>, <tt>post</tt> and <tt>put</tt> methods where you can specify a custom REST method
+ # <tt>post</tt>, <tt>put</tt> and <tt>delete</tt> methods where you can specify a custom REST method
# name to invoke.
#
# # POST to the custom 'register' REST method, i.e. POST /people/new/register.xml.