diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-09-20 16:03:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-20 16:03:57 -0400 |
commit | 19966242163611e61d45ee4033f28aa6f967906a (patch) | |
tree | 363d918dc1b17c638d0baa7d339969e4b9ada28f /actionview/lib | |
parent | 67313650eb07bc7d99fb4fa3a339fb6c3a142f51 (diff) | |
parent | 95e475b92df5766cfdd05e1f40728087ae7d7f64 (diff) | |
download | rails-19966242163611e61d45ee4033f28aa6f967906a.tar.gz rails-19966242163611e61d45ee4033f28aa6f967906a.tar.bz2 rails-19966242163611e61d45ee4033f28aa6f967906a.zip |
Merge pull request #26562 from Neodelf/docs
[ci skip] Replace to closing tag
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/helpers/asset_url_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/asset_url_helper.rb b/actionview/lib/action_view/helpers/asset_url_helper.rb index 0967245855..e0de2ff4d6 100644 --- a/actionview/lib/action_view/helpers/asset_url_helper.rb +++ b/actionview/lib/action_view/helpers/asset_url_helper.rb @@ -37,7 +37,7 @@ module ActionView # some asset downloads to wait for previous assets to finish before they can # begin. You can use the <tt>%d</tt> wildcard in the +asset_host+ to # distribute the requests over four hosts. For example, - # <tt>assets%d.example.com<tt> will spread the asset requests over + # <tt>assets%d.example.com</tt> will spread the asset requests over # "assets0.example.com", ..., "assets3.example.com". # # image_tag("rails.png") |