aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_helper.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-09-18 09:05:36 +0200
committerXavier Noria <fxn@hashref.com>2012-09-18 09:05:36 +0200
commit54f9fea307680b34d91d00c1aed55d5409fd77db (patch)
tree2a636911bd85250d7d07d5bd7b3ab557767ad202 /actionpack/lib/action_view/helpers/form_helper.rb
parent57887e21b97a571dd93b00073b9be464b6191313 (diff)
downloadrails-54f9fea307680b34d91d00c1aed55d5409fd77db.tar.gz
rails-54f9fea307680b34d91d00c1aed55d5409fd77db.tar.bz2
rails-54f9fea307680b34d91d00c1aed55d5409fd77db.zip
copy edits 137e5d9
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb
index cf5196fd38..0bb08cd7ff 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -785,7 +785,7 @@ module ActionView
# Returns an input tag of the "password" type tailored for accessing a specified attribute (identified by +method+) on an object
# assigned to the template (identified by +object+). Additional options on the input tag can be passed as a
# hash with +options+. These options will be tagged onto the HTML as an HTML element attribute as in the example
- # shown. This field will be blank by default; pass in a value via +options+ if this is not desired.
+ # shown. For security reasons this field is blank by default; pass in a value via +options+ if this is not desired.
#
# ==== Examples
# password_field(:login, :pass, :size => 20)