diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-09-11 09:13:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-09-11 09:13:05 +0000 |
commit | b5629c31bebcb9d304cf01e8a7905aa7c54e11fb (patch) | |
tree | 7f8bff3cb04d955f5ee609164b0fbb5183359ac8 /actionpack | |
parent | a0ecced15ba905a1e4fd2ef4480b0b7ecc723ba9 (diff) | |
download | rails-b5629c31bebcb9d304cf01e8a7905aa7c54e11fb.tar.gz rails-b5629c31bebcb9d304cf01e8a7905aa7c54e11fb.tar.bz2 rails-b5629c31bebcb9d304cf01e8a7905aa7c54e11fb.zip |
Fixed docs #1884
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2196 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index 573b753346..dff7969da0 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -6,7 +6,7 @@ module ActionView # Provides a number of methods for creating form tags that doesn't rely on conventions with an object assigned to the template like # FormHelper does. With the FormTagHelper, you provide the names and values yourself. # - # NOTE: The html options disabled, readonly, and multiple can all be treated as booleans. So specifying <tt>disabled => :true</tt> + # NOTE: The html options disabled, readonly, and multiple can all be treated as booleans. So specifying <tt>:disabled => true</tt> # will give <tt>disabled="disabled"</tt>. module FormTagHelper # Starts a form tag that points the action to an url configured with <tt>url_for_options</tt> just like |