aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-05-04 23:24:20 +0200
committerXavier Noria <fxn@hashref.com>2008-05-04 23:24:20 +0200
commit17d22e933a9bd590703b2f7f79f6d9cc1183a392 (patch)
tree206ec12fc5090a4f136ae833ac20674126a55dc6
parent50c96f23df12d18e6f6e33673b80754c8bea8866 (diff)
downloadrails-17d22e933a9bd590703b2f7f79f6d9cc1183a392.tar.gz
rails-17d22e933a9bd590703b2f7f79f6d9cc1183a392.tar.bz2
rails-17d22e933a9bd590703b2f7f79f6d9cc1183a392.zip
revised some conventions in form_tag_helper.rb
-rw-r--r--actionpack/lib/action_view/helpers/form_tag_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb
index f37b428b80..922a0662fe 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -316,12 +316,12 @@ module ActionView
# Creates a submit button with the text <tt>value</tt> as the caption.
#
# ==== Options
- # * <tt>:confirm => 'question?'</tt> -- This will add a JavaScript confirm
+ # * <tt>:confirm => 'question?'</tt> - This will add a JavaScript confirm
# prompt with the question specified. If the user accepts, the form is
# processed normally, otherwise no action is taken.
- # * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
+ # * <tt>:disabled</tt> - If true, the user will not be able to use this input.
# * <tt>:disable_with</tt> - Value of this parameter will be used as the value for a disabled version
- # of the submit button when the form is submitted.
+ # of the submit button when the form is submitted.
# * Any other key creates standard HTML options for the tag.
#
# ==== Examples