aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorMarius Nuennerich <marius@nuenneri.ch>2010-05-18 14:35:52 +0200
committerSantiago Pastorino <santiago@wyeworks.com>2010-05-18 19:29:17 -0300
commitaa4fe9fb33d144cde2c79415367624ad0676d038 (patch)
tree7939e24af9e5fada51c9933cc07ee11eccd085e4 /actionpack
parentea9398f9bafeec8fb0c527710b4708625fb60c21 (diff)
downloadrails-aa4fe9fb33d144cde2c79415367624ad0676d038.tar.gz
rails-aa4fe9fb33d144cde2c79415367624ad0676d038.tar.bz2
rails-aa4fe9fb33d144cde2c79415367624ad0676d038.zip
fix documentation typo
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helper.rb4
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 e1fbc118d5..626cc7d3b0 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
@@ -62,9 +62,9 @@ module ActionView
# "http://assets#{source.hash % 2 + 1}.example.com"
# }
# image_tag("rails.png")
- # # => <img alt="Rails" src="http://assets0.example.com/images/rails.png?1230601161" />
+ # # => <img alt="Rails" src="http://assets1.example.com/images/rails.png?1230601161" />
# stylesheet_link_tag("application")
- # # => <link href="http://assets1.example.com/stylesheets/application.css?1232285206" media="screen" rel="stylesheet" type="text/css" />
+ # # => <link href="http://assets2.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". This option is useful for example if