diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-01-05 16:50:15 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-01-05 16:50:15 -0300 |
commit | 688dde2d6288c1c183c36fae65f11604b63d743f (patch) | |
tree | 2b9229626a6f918c6b82586e5dfec2c65b7f1dd4 /actionpack | |
parent | 23714ec33ffd87d314d74f3b4ff6b6075a652be8 (diff) | |
download | rails-688dde2d6288c1c183c36fae65f11604b63d743f.tar.gz rails-688dde2d6288c1c183c36fae65f11604b63d743f.tar.bz2 rails-688dde2d6288c1c183c36fae65f11604b63d743f.zip |
Fix documentation to content_tag_for [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/record_tag_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/record_tag_helper.rb b/actionpack/lib/action_view/helpers/record_tag_helper.rb index 6d99d43fb8..271a194913 100644 --- a/actionpack/lib/action_view/helpers/record_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/record_tag_helper.rb @@ -65,8 +65,8 @@ module ActionView # # produces: # - # <tr id="person_123" class="person">...</tr> - # <tr id="person_124" class="person">...</tr> + # <tr id="person_123" class="person">...</tr> + # <tr id="person_124" class="person">...</tr> # # content_tag_for also accepts a hash of options, which will be converted to # additional HTML attributes. If you specify a <tt>:class</tt> value, it will be combined |