diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2013-01-18 12:26:03 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2013-01-18 12:26:03 -0500 |
commit | b8ef4f05fbbc87e8f2e467b4378585cf1ce83696 (patch) | |
tree | 9520156482dfd69728900998df6696f9dc09de25 | |
parent | cb60a83377ccace58f64dd626708b50efed8a999 (diff) | |
download | rails-b8ef4f05fbbc87e8f2e467b4378585cf1ce83696.tar.gz rails-b8ef4f05fbbc87e8f2e467b4378585cf1ce83696.tar.bz2 rails-b8ef4f05fbbc87e8f2e467b4378585cf1ce83696.zip |
fix broken examples format in image_tag helper [ci skip]
-rw-r--r-- | actionpack/lib/action_view/helpers/asset_tag_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index 11743e36f2..5b3a2cae7c 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -182,6 +182,8 @@ module ActionView # width="30" and height="45", and "50" becomes width="50" and height="50". # <tt>:size</tt> will be ignored if the value is not in the correct format. # + # ==== Examples + # # image_tag("icon") # # => <img alt="Icon" src="/assets/icon" /> # image_tag("icon.png") |