fix cross-references in HttpHelper methods

This commit is contained in:
Jonathan Dance + Gabriel Horner 2011-01-28 16:55:21 -05:00
parent 78ecb2485e
commit 49744bdaee

@ -349,7 +349,7 @@ def define_generate_prefix(app, name)
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 @@ def get(*args, &block)
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 @@ def post(*args, &block)
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 @@ def put(*args, &block)
end
# Define a route that only recognizes HTTP PUT.
# For supported arguments, see +match+.
# For supported arguments, see <tt>Base#match</tt>.
#
# Example:
#