Skip to content

Commit

Permalink
Fix unintended removal of 'cols' from a text_area example.
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Mar 11, 2012
1 parent 3384ee2 commit 8b5198a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/lib/action_view/helpers/form_helper.rb
Expand Up @@ -757,7 +757,7 @@ def file_field(object_name, method, options = {})
# # </textarea>
#
# text_area(:application, :notes, :cols => 40, :rows => 15, :class => 'app_input')
# # => <textarea rows="15" id="application_notes" name="application[notes]" class="app_input">
# # => <textarea cols="40" rows="15" id="application_notes" name="application[notes]" class="app_input">
# # #{@application.notes}
# # </textarea>
#
Expand Down

0 comments on commit 8b5198a

Please sign in to comment.