aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_tag_helper.rb
diff options
context:
space:
mode:
authorR.T. Lechow <rtlechow@gmail.com>2011-03-04 00:09:26 -0500
committerXavier Noria <fxn@hashref.com>2011-03-05 11:56:35 +0100
commit87e9e3f9afa470df49f2a07af87074b9f4567028 (patch)
tree1fbade796bb092ca2c48bcdfd67262372668d18e /actionpack/lib/action_view/helpers/form_tag_helper.rb
parenta1b4d8e7b277ddcfba6c31cbb9245025123cf04b (diff)
downloadrails-87e9e3f9afa470df49f2a07af87074b9f4567028.tar.gz
rails-87e9e3f9afa470df49f2a07af87074b9f4567028.tar.bz2
rails-87e9e3f9afa470df49f2a07af87074b9f4567028.zip
Action Pack typos.
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 71f8534cbf..49aa434020 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -592,7 +592,7 @@ module ActionView
options.stringify_keys.tap do |html_options|
html_options["enctype"] = "multipart/form-data" if html_options.delete("multipart")
# The following URL is unescaped, this is just a hash of options, and it is the
- # responsability of the caller to escape all the values.
+ # responsibility of the caller to escape all the values.
html_options["action"] = url_for(url_for_options, *parameters_for_url)
html_options["accept-charset"] = "UTF-8"
html_options["data-remote"] = true if html_options.delete("remote")