From d0bc724786906644d7ce00e28ca62f5c308f4309 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 15 Mar 2008 19:54:02 +0000 Subject: Docfix (closes #11281) [jlindley] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9029 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/asset_tag_helper.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index c2e4df3351..48f7c10e4f 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -17,7 +17,7 @@ module ActionView # ActionController::Base.asset_host = "assets.example.com" # image_tag("rails.png") # => Rails - # stylesheet_include_tag("application") + # stylesheet_link_tag("application") # => # # This is useful since browsers typically open at most two connections to a single host, @@ -28,7 +28,7 @@ module ActionView # # image_tag("rails.png") # => Rails - # stylesheet_include_tag("application") + # stylesheet_link_tag("application") # => # # To do this, you can either setup 4 actual hosts, or you can use wildcard DNS to CNAME @@ -47,7 +47,7 @@ module ActionView # ActionController::Base.asset_host = Proc.new { |source| "http://assets#{rand(2) + 1}.example.com" } # image_tag("rails.png") # => Rails - # stylesheet_include_tag("application") + # stylesheet_link_tag("application") # => # # The proc takes a source parameter (which is the path of the source asset) and an optional @@ -64,7 +64,7 @@ module ActionView # } # image_tag("rails.png") # => Rails - # stylesheet_include_tag("application") + # stylesheet_link_tag("application") # => # # The optional request parameter to the proc is useful in particular for serving assets from an -- cgit v1.2.3