diff options
author | Thomas R. Koll <tomk32@tomk32.de> | 2009-05-24 11:46:10 +0200 |
---|---|---|
committer | Thomas R. Koll <tomk32@tomk32.de> | 2009-05-24 11:46:10 +0200 |
commit | 1fee2fb996229236fb236bcef423930fdf1dfe2d (patch) | |
tree | 60477897a0a383cf1508c24f986462b8b1d6ad73 | |
parent | 9b5fd797c5bb15ab6dc333210775fa1ff6544312 (diff) | |
download | rails-1fee2fb996229236fb236bcef423930fdf1dfe2d.tar.gz rails-1fee2fb996229236fb236bcef423930fdf1dfe2d.tar.bz2 rails-1fee2fb996229236fb236bcef423930fdf1dfe2d.zip |
Fixed a typo
Writing "form element" instead of "FORM element"
-rw-r--r-- | actionpack/lib/action_view/helpers/url_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb index 2309ff962d..2ecab0ad2a 100644 --- a/actionpack/lib/action_view/helpers/url_helper.rb +++ b/actionpack/lib/action_view/helpers/url_helper.rb @@ -248,7 +248,7 @@ module ActionView # using the link_to method with the <tt>:method</tt> modifier as described in # the link_to documentation. # - # The generated FORM element has a class name of <tt>button-to</tt> + # The generated form element has a class name of <tt>button-to</tt> # to allow styling of the form itself and its children. You can control # the form submission and input element behavior using +html_options+. # This method accepts the <tt>:method</tt> and <tt>:confirm</tt> modifiers @@ -259,7 +259,7 @@ module ActionView # to change the HTTP verb used to submit the form. # # ==== Options - # The +options+ hash accepts the same options at url_for. + # The +options+ hash accepts the same options as url_for. # # There are a few special +html_options+: # * <tt>:method</tt> - Specifies the anchor name to be appended to the path. |