diff options
author | T.J. Schuck <tj@tjschuck.com> | 2017-11-22 14:45:51 -0500 |
---|---|---|
committer | T.J. Schuck <tj@tjschuck.com> | 2017-11-22 14:45:51 -0500 |
commit | 3063ace1070e4ddb8d0cc09fbd23049e7b21617a (patch) | |
tree | e5d5a5978ec1ee537cc7e2352df2b2e7c7614b64 /actionpack/lib/action_dispatch | |
parent | 858baa099b26f6b3e9eb8376d9c09559fe5cc599 (diff) | |
download | rails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.tar.gz rails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.tar.bz2 rails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.zip |
Update incorrect backtick usage in RDoc to teletype
[ci skip]
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/url_for.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/url_for.rb b/actionpack/lib/action_dispatch/routing/url_for.rb index 3ae533dd37..fa345dccdf 100644 --- a/actionpack/lib/action_dispatch/routing/url_for.rb +++ b/actionpack/lib/action_dispatch/routing/url_for.rb @@ -155,7 +155,7 @@ module ActionDispatch # Missing routes keys may be filled in from the current request's parameters # (e.g. +:controller+, +:action+, +:id+ and any other parameters that are # placed in the path). Given that the current action has been reached - # through `GET /users/1`: + # through <tt>GET /users/1</tt>: # # url_for(only_path: true) # => '/users/1' # url_for(only_path: true, action: 'edit') # => '/users/1/edit' |