aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/record_tag_helper.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-03-05 01:26:24 +0000
committerPratik Naik <pratiknaik@gmail.com>2008-03-05 01:26:24 +0000
commit89ee5d63d039af6770014a3bfdc4a743be9a429c (patch)
treef493865ce75c0f3c790ec05cccceb46857616b31 /actionpack/lib/action_view/helpers/record_tag_helper.rb
parentb3b0a0c388b27ec9d658823b963f4bc59ff2f270 (diff)
downloadrails-89ee5d63d039af6770014a3bfdc4a743be9a429c.tar.gz
rails-89ee5d63d039af6770014a3bfdc4a743be9a429c.tar.bz2
rails-89ee5d63d039af6770014a3bfdc4a743be9a429c.zip
Tests for div_for and content_tag_for helpers. Closes #11223 [thechrisoshow]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8980 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers/record_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/record_tag_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/record_tag_helper.rb b/actionpack/lib/action_view/helpers/record_tag_helper.rb
index 7b82c38a0e..40b66be79f 100644
--- a/actionpack/lib/action_view/helpers/record_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/record_tag_helper.rb
@@ -24,7 +24,7 @@ module ActionView
# <td><%=h @person.last_name %></td>
# <% end %>
#
- # would produce hthe following HTML (assuming @person is an instance of
+ # would produce the following HTML (assuming @person is an instance of
# a Person object, with an id value of 123):
#
# <tr id="person_123" class="person">....</tr>