diff options
author | Xavier Noria <fxn@hashref.com> | 2009-01-18 14:40:40 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-01-18 14:40:40 +0100 |
commit | e35e5ed2a4c87a10c70aa6b87a411182ce967c21 (patch) | |
tree | 73b8633f7f915884f6be0468d7932248a7bf474d /actionpack | |
parent | 01337e06dd3d58257eff7b46c7960461ae6c1cb1 (diff) | |
download | rails-e35e5ed2a4c87a10c70aa6b87a411182ce967c21.tar.gz rails-e35e5ed2a4c87a10c70aa6b87a411182ce967c21.tar.bz2 rails-e35e5ed2a4c87a10c70aa6b87a411182ce967c21.zip |
quoted a couple of strings
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/asset_tag_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index bd37f6fa0e..f6abea38ed 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -63,8 +63,8 @@ module ActionView # stylesheet_link_tag("application") # # => <link href="http://assets1.example.com/stylesheets/application.css?1232285206" media="screen" rel="stylesheet" type="text/css" /> # - # The example above generates http://assets1.example.com and - # http://assets2.example.com randomly. This option is useful for example if + # The example above generates "http://assets1.example.com" and + # "http://assets2.example.com" randomly. This option is useful for example if # you need fewer/more than four hosts, custom host names, etc. # # As you see the proc takes a +source+ parameter. That's a string with the |