diff options
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rw-r--r-- | actionpack/lib/action_view/helpers/form_tag_helper.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 34b0421b67..a866c2a22b 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Disambiguate :size option for text area tag. Closes #8955 [redbeard] + * Fix broken tag in assert_tag documentation. Closes #9037 [mfazekas] * Add documentation for route conditions. Closes #9041 [innu, manfred] 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. |