diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-15 23:56:06 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-15 23:56:06 +0000 |
commit | e71465bdaff861f65f67a0658d9ef08f3a689c27 (patch) | |
tree | f7fb4b084decf9a48fab261e9a065a4cb2cbfe50 /actionpack | |
parent | b8657089f289e2b3a9d5c383516e951012b2bec2 (diff) | |
download | rails-e71465bdaff861f65f67a0658d9ef08f3a689c27.tar.gz rails-e71465bdaff861f65f67a0658d9ef08f3a689c27.tar.bz2 rails-e71465bdaff861f65f67a0658d9ef08f3a689c27.zip |
Avoid RDoc warning
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7495 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/text_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/text_helper.rb b/actionpack/lib/action_view/helpers/text_helper.rb index 493fa7c01d..36795bf498 100644 --- a/actionpack/lib/action_view/helpers/text_helper.rb +++ b/actionpack/lib/action_view/helpers/text_helper.rb @@ -438,7 +438,7 @@ module ActionView # <tr class="<%= cycle("even", "odd", :name => "row_class") # <td> # <% item.values.each do |value| %> - # <!-- Create a named cycle "colors" --> + # <%# Create a named cycle "colors" %> # <span style="color:<%= cycle("red", "green", "blue", :name => "colors") -%>"> # <%= value %> # </span> |