diff options
author | Junya Ogura <junyaogura@gmail.com> | 2013-05-06 06:15:08 +0900 |
---|---|---|
committer | Junya Ogura <junyaogura@gmail.com> | 2013-05-06 06:15:08 +0900 |
commit | 47bf072330f4b62a125d7e93b8a11c8d92c84387 (patch) | |
tree | b39ae7067768454fd612dfa70cb0af2bf5a668fa | |
parent | 338fce0a632e9521d4597dfc42d935aaf5f7c5b7 (diff) | |
download | rails-47bf072330f4b62a125d7e93b8a11c8d92c84387.tar.gz rails-47bf072330f4b62a125d7e93b8a11c8d92c84387.tar.bz2 rails-47bf072330f4b62a125d7e93b8a11c8d92c84387.zip |
Fix typo in documentation comment
-rw-r--r-- | actionpack/lib/action_view/helpers/asset_tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index 693b6bdfcc..3a6f449eb8 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -155,7 +155,7 @@ module ActionView # ==== Examples # # favicon_link_tag '/myicon.ico' - # # => <link href="/assets/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" /> + # # => <link href="/assets/myicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" /> # # Mobile Safari looks for a different <link> tag, pointing to an image that # will be used if you add the page to the home screen of an iPod Touch, iPhone, or iPad. |