Updated documentation for block helpers in tag_helper.rb

This commit is contained in:
Jeroen van Dijk
2010-03-12 13:19:59 +01:00
parent e98474096a
commit 04963f16c2

View File

@@ -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>