1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Wrap code snippets in +, not backticks, in sdoc

[ci skip]
This commit is contained in:
claudiob 2014-11-20 14:44:56 -08:00
parent 030c0532b9
commit 02e821f329

View file

@ -391,7 +391,7 @@ module ActionDispatch
# Matches a url pattern to one or more routes. # Matches a url pattern to one or more routes.
# #
# You should not use the `match` method in your router # You should not use the +match+ method in your router
# without specifying an HTTP method. # without specifying an HTTP method.
# #
# If you want to expose your action to both GET and POST, use: # If you want to expose your action to both GET and POST, use:
@ -402,7 +402,7 @@ module ActionDispatch
# Note that +:controller+, +:action+ and +:id+ are interpreted as url # Note that +:controller+, +:action+ and +:id+ are interpreted as url
# query parameters and thus available through +params+ in an action. # query parameters and thus available through +params+ in an action.
# #
# If you want to expose your action to GET, use `get` in the router: # If you want to expose your action to GET, use +get+ in the router:
# #
# Instead of: # Instead of:
# #
@ -457,7 +457,7 @@ module ActionDispatch
# The route's action. # The route's action.
# #
# [:param] # [:param]
# Overrides the default resource identifier `:id` (name of the # Overrides the default resource identifier +:id+ (name of the
# dynamic segment used to generate the routes). # dynamic segment used to generate the routes).
# You can access that segment from your controller using # You can access that segment from your controller using
# <tt>params[<:param>]</tt>. # <tt>params[<:param>]</tt>.