diff options
author | Wen-Tien Chang <ihower@gmail.com> | 2012-02-01 00:09:26 +0800 |
---|---|---|
committer | Wen-Tien Chang <ihower@gmail.com> | 2012-02-01 00:09:26 +0800 |
commit | 858efc9cbdec47888a4056cf82238605d825b542 (patch) | |
tree | 8139c82934c232bf005b8268a412b43b53b16a50 /actionpack/lib/action_dispatch | |
parent | 40b218977ecf171852f6b00587b77602edf180de (diff) | |
download | rails-858efc9cbdec47888a4056cf82238605d825b542.tar.gz rails-858efc9cbdec47888a4056cf82238605d825b542.tar.bz2 rails-858efc9cbdec47888a4056cf82238605d825b542.zip |
Fix typo in routing documentation
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index e2d7a29079..a17a39bed3 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -491,7 +491,7 @@ module ActionDispatch map_method(:put, args, &block) end - # Define a route that only recognizes HTTP PUT. + # Define a route that only recognizes HTTP DELETE. # For supported arguments, see <tt>Base#match</tt>. # # Example: |