aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_helper.rb
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2005-10-12 03:43:28 +0000
committerMarcel Molina <marcel@vernix.org>2005-10-12 03:43:28 +0000
commit7aa1ba7ff0f156ab726ff838957eeb2804d2df54 (patch)
treef7801401a22b0fd01bb1bf858dfdda6f518e4021 /actionpack/lib/action_view/helpers/form_helper.rb
parent6823f57b27b61e4b38154fc750189fb84ebe3b02 (diff)
downloadrails-7aa1ba7ff0f156ab726ff838957eeb2804d2df54.tar.gz
rails-7aa1ba7ff0f156ab726ff838957eeb2804d2df54.tar.bz2
rails-7aa1ba7ff0f156ab726ff838957eeb2804d2df54.zip
Misc doc fixes (typos/grammar/etc). Closes #2445.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2537 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb
index 373f47a39c..95132d130b 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -76,17 +76,17 @@ module ActionView
InstanceTag.new(object, method, self).to_input_field_tag("text", options)
end
- # Works just like text_field, but returns a input tag of the "password" type instead.
+ # Works just like text_field, but returns an input tag of the "password" type instead.
def password_field(object, method, options = {})
InstanceTag.new(object, method, self).to_input_field_tag("password", options)
end
- # Works just like text_field, but returns a input tag of the "hidden" type instead.
+ # Works just like text_field, but returns an input tag of the "hidden" type instead.
def hidden_field(object, method, options = {})
InstanceTag.new(object, method, self).to_input_field_tag("hidden", options)
end
- # Works just like text_field, but returns a input tag of the "file" type instead, which won't have any default value.
+ # Works just like text_field, but returns an input tag of the "file" type instead, which won't have a default value.
def file_field(object, method, options = {})
InstanceTag.new(object, method, self).to_input_field_tag("file", options)
end