diff options
author | Jonathan Dance + Gabriel Horner <ghorner+jd+gh@wegowise.com> | 2011-01-28 16:55:21 -0500 |
---|---|---|
committer | Jonathan Dance + Gabriel Horner <ghorner+jd+gh@wegowise.com> | 2011-01-28 19:25:12 -0500 |
commit | 49744bdaee899d64f8c70f65b2c1d63ace41cafa (patch) | |
tree | 4be61baa12d60f3dc21e5b801743e0ff375daa46 | |
parent | 78ecb2485e63ec96a2bd17dc19deed05632cd981 (diff) | |
download | rails-49744bdaee899d64f8c70f65b2c1d63ace41cafa.tar.gz rails-49744bdaee899d64f8c70f65b2c1d63ace41cafa.tar.bz2 rails-49744bdaee899d64f8c70f65b2c1d63ace41cafa.zip |
fix cross-references in HttpHelper methods
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 6658af15b0..af7a2c31f4 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -349,7 +349,7 @@ module ActionDispatch module HttpHelpers # Define a route that only recognizes HTTP GET. - # For supported arguments, see +match+. + # For supported arguments, see <tt>Base#match</tt>. # # Example: # @@ -359,7 +359,7 @@ module ActionDispatch end # Define a route that only recognizes HTTP POST. - # For supported arguments, see +match+. + # For supported arguments, see <tt>Base#match</tt>. # # Example: # @@ -369,7 +369,7 @@ module ActionDispatch end # Define a route that only recognizes HTTP PUT. - # For supported arguments, see +match+. + # For supported arguments, see <tt>Base#match</tt>. # # Example: # @@ -379,7 +379,7 @@ module ActionDispatch end # Define a route that only recognizes HTTP PUT. - # For supported arguments, see +match+. + # For supported arguments, see <tt>Base#match</tt>. # # Example: # |