diff options
author | Andrey Molchanov <neodelf@gmail.com> | 2016-09-20 22:56:23 +0300 |
---|---|---|
committer | Andrey Molchanov <neodelf@gmail.com> | 2016-09-20 22:57:56 +0300 |
commit | 95e475b92df5766cfdd05e1f40728087ae7d7f64 (patch) | |
tree | 6c84e2e1e1a77b635e193a2966885b85784d3e2a /actionview/lib | |
parent | 7ccd32412e617884f21edb240df9030b8e3b58ea (diff) | |
download | rails-95e475b92df5766cfdd05e1f40728087ae7d7f64.tar.gz rails-95e475b92df5766cfdd05e1f40728087ae7d7f64.tar.bz2 rails-95e475b92df5766cfdd05e1f40728087ae7d7f64.zip |
[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") |