aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-05-23 00:21:35 +0200
committerXavier Noria <fxn@hashref.com>2008-05-23 00:21:35 +0200
commit82601290cd6bbf8a8a100622cc9c5164128611a0 (patch)
tree6b3acb2446a16c7bf3b675d73e2e2340db6610f6 /actionpack
parente32deb595f66e8be7aeb9aeb2ef796994f524584 (diff)
downloadrails-82601290cd6bbf8a8a100622cc9c5164128611a0.tar.gz
rails-82601290cd6bbf8a8a100622cc9c5164128611a0.tar.bz2
rails-82601290cd6bbf8a8a100622cc9c5164128611a0.zip
fixed indentation in description list
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view/helpers/form_tag_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb
index 0ad6cc1302..ca58f4ba26 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -14,9 +14,9 @@ module ActionView
#
# ==== Options
# * <tt>:multipart</tt> - If set to true, the enctype is set to "multipart/form-data".
- # * <tt>:method</tt> - The method to use when submitting the form, usually either "get" or "post".
- # If "put", "delete", or another verb is used, a hidden input with name _method
- # is added to simulate the verb over post.
+ # * <tt>:method</tt> - The method to use when submitting the form, usually either "get" or "post".
+ # If "put", "delete", or another verb is used, a hidden input with name <tt>_method</tt>
+ # is added to simulate the verb over post.
# * A list of parameters to feed to the URL the form will be posted to.
#
# ==== Examples