aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorJeroen van Dijk <jeroen@jeevidee.nl>2010-03-12 13:19:59 +0100
committerJeroen van Dijk <jeroen@jeevidee.nl>2010-03-12 16:50:14 +0100
commit04963f16c2ebcd6c247ac8b4c1d4849fcde2d44b (patch)
treebf734354bfcccdd471420cc08605e8d7f1fac662 /actionpack/lib
parente98474096a6a514b2a5c29907a261229a4953273 (diff)
downloadrails-04963f16c2ebcd6c247ac8b4c1d4849fcde2d44b.tar.gz
rails-04963f16c2ebcd6c247ac8b4c1d4849fcde2d44b.tar.bz2
rails-04963f16c2ebcd6c247ac8b4c1d4849fcde2d44b.zip
Updated documentation for block helpers in tag_helper.rb
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/tag_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/tag_helper.rb b/actionpack/lib/action_view/helpers/tag_helper.rb
index a3a8185f40..ee10f8f3bb 100644
--- a/actionpack/lib/action_view/helpers/tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/tag_helper.rb
@@ -62,7 +62,7 @@ module ActionView
# content_tag("select", options, :multiple => true)
# # => <select multiple="multiple">...options...</select>
#
- # <% content_tag :div, :class => "strong" do -%>
+ # <%= content_tag :div, :class => "strong" do -%>
# Hello world!
# <% end -%>
# # => <div class="strong">Hello world!</div>