aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_tag_helper.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2013-01-03 22:34:11 +0900
committerAkira Matsuda <ronnie@dio.jp>2013-01-03 22:34:11 +0900
commit79255fab894e44b1daa943a151eadcefbe97526a (patch)
tree051e4c72c3f03a6894eceaa25aeedc8011cd9341 /actionpack/lib/action_view/helpers/form_tag_helper.rb
parenteed9f2539e3ab5a68e798802f464b8e4e95e619e (diff)
downloadrails-79255fab894e44b1daa943a151eadcefbe97526a.tar.gz
rails-79255fab894e44b1daa943a151eadcefbe97526a.tar.bz2
rails-79255fab894e44b1daa943a151eadcefbe97526a.zip
PUT => PATCH
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 ff83ef3ca1..547b61defd 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -26,7 +26,7 @@ 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 <tt>_method</tt>
+ # If "patch", "put", "delete", or another verb is used, a hidden input with name <tt>_method</tt>
# is added to simulate the verb over post.
# * <tt>:authenticity_token</tt> - Authenticity token to use in the form. Use only if you need to
# pass custom authenticity token string, or to not add authenticity_token field at all