From 7aa1ba7ff0f156ab726ff838957eeb2804d2df54 Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Wed, 12 Oct 2005 03:43:28 +0000 Subject: Misc doc fixes (typos/grammar/etc). Closes #2445. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2537 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/form_helper.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'actionpack/lib/action_view/helpers/form_helper.rb') 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 -- cgit v1.2.3