diff options
author | Cesar Carruitero <cesar@mozilla.pe> | 2012-11-09 10:30:10 -0500 |
---|---|---|
committer | Cesar Carruitero <cesar@mozilla.pe> | 2012-11-09 10:30:10 -0500 |
commit | 477cf3151a649b337e56a82dd749a40710deb8d5 (patch) | |
tree | 6ed465103f35bb0b12b263968b2cbecb641bdbd1 /actionpack/lib | |
parent | 0500becd3fa868bf0eabb8ad47e4cd9f933abb96 (diff) | |
download | rails-477cf3151a649b337e56a82dd749a40710deb8d5.tar.gz rails-477cf3151a649b337e56a82dd749a40710deb8d5.tar.bz2 rails-477cf3151a649b337e56a82dd749a40710deb8d5.zip |
correct link syntax [ci-skip]
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 045299281c..41e38fa993 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -501,7 +501,7 @@ module ActionDispatch module HttpHelpers # Define a route that only recognizes HTTP GET. - # For supported arguments, see <tt>Base#match</tt>. + # For supported arguments, see match[rdoc-ref:Base#match] # # get 'bacon', to: 'food#bacon' def get(*args, &block) @@ -509,7 +509,7 @@ module ActionDispatch end # Define a route that only recognizes HTTP POST. - # For supported arguments, see <tt>Base#match</tt>. + # For supported arguments, see match[rdoc-ref:Base#match] # # post 'bacon', to: 'food#bacon' def post(*args, &block) @@ -517,7 +517,7 @@ module ActionDispatch end # Define a route that only recognizes HTTP PATCH. - # For supported arguments, see <tt>Base#match</tt>. + # For supported arguments, see match[rdoc-ref:Base#match] # # patch 'bacon', to: 'food#bacon' def patch(*args, &block) @@ -525,7 +525,7 @@ module ActionDispatch end # Define a route that only recognizes HTTP PUT. - # For supported arguments, see <tt>Base#match</tt>. + # For supported arguments, see match[rdoc-ref:Base#match] # # put 'bacon', to: 'food#bacon' def put(*args, &block) @@ -533,7 +533,7 @@ module ActionDispatch end # Define a route that only recognizes HTTP DELETE. - # For supported arguments, see <tt>Base#match</tt>. + # For supported arguments, see match[rdoc-ref:Base#match] # # delete 'broccoli', to: 'food#broccoli' def delete(*args, &block) |