aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/asset_tag_helper.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-12-04 22:06:34 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-12-04 22:06:34 +0530
commit2b847a0a9b56c7ede40012c7b3bd8ec90d6c111c (patch)
treeb3353f58cdae20e741e35d599793ca407cd53d04 /actionpack/lib/action_view/helpers/asset_tag_helper.rb
parentb5de0ac6b0f12e5e61e944467cb509a0196dcd95 (diff)
downloadrails-2b847a0a9b56c7ede40012c7b3bd8ec90d6c111c.tar.gz
rails-2b847a0a9b56c7ede40012c7b3bd8ec90d6c111c.tar.bz2
rails-2b847a0a9b56c7ede40012c7b3bd8ec90d6c111c.zip
copy edits [ci skip]
Diffstat (limited to 'actionpack/lib/action_view/helpers/asset_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helper.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
index dd837ebba5..cf2a117966 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
@@ -68,9 +68,6 @@ module ActionView
# to "screen", so you must explicitely set it to "all" for the stylesheet(s) to
# apply to all media types.
#
- # When the Asset Pipeline is enabled, the helper is usually employed to load the manifest
- # file to be processed by it.
- #
# stylesheet_link_tag "style"
# # => <link href="/assets/style.css" media="screen" rel="stylesheet" />
#
@@ -147,7 +144,7 @@ module ActionView
# you can override "rel" and "type".
#
# ==== Options
- # * <tt>:rel</tt> - Specify the relation of this link, defaults to 'shortcut icon'
+ # * <tt>:rel</tt> - Specify the relation of this link, defaults to 'shortcut icon'
# * <tt>:type</tt> - Override the auto-generated mime type, defaults to 'image/vnd.microsoft.icon'
#
# favicon_link_tag '/myicon.ico'