diff options
author | Xavier Noria <fxn@hashref.com> | 2009-04-27 19:03:20 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-04-27 19:03:20 +0200 |
commit | ba84025eb47c8a45846f410bed794414f68edbad (patch) | |
tree | 74ad4f99b7e0aa5f73255a62bc3073bf9969ee46 | |
parent | 2e530638eeeb08913a8751974f15d3575eaef17b (diff) | |
download | rails-ba84025eb47c8a45846f410bed794414f68edbad.tar.gz rails-ba84025eb47c8a45846f410bed794414f68edbad.tar.bz2 rails-ba84025eb47c8a45846f410bed794414f68edbad.zip |
fixes an example from the previous commit
-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 46b0fd2454..bfda866a55 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -465,8 +465,8 @@ module ActionView # <img src="/images/icon?1240376589" alt="Icon" /> # image_tag("icon.png") # => # <img src="/images/icon.png" alt="Icon" /> - # image_tag("icon.png?1239667843", :size => "16x10", :alt => "Edit Entry") # => - # <img src="/images/icon.png" width="16" height="10" alt="Edit Entry" /> + # image_tag("icon.png", :size => "16x10", :alt => "Edit Entry") # => + # <img src="/images/icon.png?1239667843" width="16" height="10" alt="Edit Entry" /> # image_tag("/icons/icon.gif", :size => "16x16") # => # <img src="/icons/icon.gif?1239622973" width="16" height="16" alt="Icon" /> # image_tag("/icons/icon.gif", :height => '32', :width => '32') # => |