aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_tag_helper.rb
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2007-11-06 19:26:36 +0000
committerMarcel Molina <marcel@vernix.org>2007-11-06 19:26:36 +0000
commit0230fc96ec0807810c3e67fa4967daaf204d618e (patch)
treeddd6a11ee1f48e0342641b61fdf13ec395af5176 /actionpack/lib/action_view/helpers/form_tag_helper.rb
parent4a44dbb63d224125380fd2ea5d9c1dc76f885681 (diff)
downloadrails-0230fc96ec0807810c3e67fa4967daaf204d618e.tar.gz
rails-0230fc96ec0807810c3e67fa4967daaf204d618e.tar.bz2
rails-0230fc96ec0807810c3e67fa4967daaf204d618e.zip
Disambiguate :size option for text area tag. Closes #8955 [redbeard]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8099 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_tag_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb
index ab97fab250..1f5df205a1 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -207,7 +207,7 @@ module ActionView
# Creates a text input area; use a textarea for longer text inputs such as blog posts or descriptions.
#
# ==== Options
- # * <tt>:size</tt> - A string specifying the dimensions of the textarea using dimensions (e.g., "25x10").
+ # * <tt>:size</tt> - A string specifying the dimensions (columns by rows) of the textarea (e.g., "25x10").
# * <tt>:rows</tt> - Specify the number of rows in the textarea
# * <tt>:cols</tt> - Specify the number of columns in the textarea
# * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.