diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-08-12 13:31:05 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-08-12 13:31:05 -0700 |
commit | bf646b364fd9b499214c9fcab852c2864331d7c9 (patch) | |
tree | 302f73772fe2f16a037b716301bb816c9e61b2d5 | |
parent | a84ca223f260bcd5221767ffa158cfe5f1efec2d (diff) | |
parent | d9c9d685b6710407348518d796ef1f900e991b1a (diff) | |
download | rails-bf646b364fd9b499214c9fcab852c2864331d7c9.tar.gz rails-bf646b364fd9b499214c9fcab852c2864331d7c9.tar.bz2 rails-bf646b364fd9b499214c9fcab852c2864331d7c9.zip |
Merge pull request #7341 from edward/patch-1
Grammar fix in ActionView Form Tag Helper docs/comments
-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 46ee196a2a..a9b91d1db3 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 @@ require 'active_support/core_ext/module/attribute_accessors' module ActionView # = Action View Form Tag Helpers module Helpers - # Provides a number of methods for creating form tags that doesn't rely on an Active Record object assigned to the template like + # Provides a number of methods for creating form tags that don't rely on an Active Record object assigned to the template like # FormHelper does. Instead, you provide the names and values manually. # # NOTE: The HTML options <tt>disabled</tt>, <tt>readonly</tt>, and <tt>multiple</tt> can all be treated as booleans. So specifying |