diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2015-04-05 15:55:18 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2015-04-05 15:58:43 +0200 |
commit | 9cc41c36f7643e6d928075e32b660de69b31a86a (patch) | |
tree | 384777a4341100d64c54e9ff6e4bd9672a3e39ae /actionpack/lib | |
parent | 0eab204c0ec76903fa4b43aecae502f51d5a9c55 (diff) | |
download | rails-9cc41c36f7643e6d928075e32b660de69b31a86a.tar.gz rails-9cc41c36f7643e6d928075e32b660de69b31a86a.tar.bz2 rails-9cc41c36f7643e6d928075e32b660de69b31a86a.zip |
Fix a few typos [ci skip]
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/url_for.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/metal/url_for.rb b/actionpack/lib/action_controller/metal/url_for.rb index fbaa90d521..5a0e5c62e4 100644 --- a/actionpack/lib/action_controller/metal/url_for.rb +++ b/actionpack/lib/action_controller/metal/url_for.rb @@ -5,9 +5,9 @@ module ActionController # In addition to <tt>AbstractController::UrlFor</tt>, this module accesses the HTTP layer to define # url options like the +host+. In order to do so, this module requires the host class # to implement +env+ which needs to be Rack-compatible and +request+ - # which is either instance of +ActionDispatch::Request+ or an object - # that responds to <tt>host</tt>, <tt>optional_port</tt>, <tt>protocol</tt> and - # <tt>symbolized_path_parameter</tt> methods. + # which is either an instance of +ActionDispatch::Request+ or an object + # that responds to the +host+, +optional_port+, +protocol+ and + # +symbolized_path_parameter+ methods. # # class RootUrl # include ActionController::UrlFor |