aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorKevin Musiorski <musiorski@gmail.com>2012-04-19 14:52:21 -0500
committerKevin Musiorski <musiorski@gmail.com>2012-04-19 14:52:21 -0500
commit6054e367f1baf7b8aa051de6d193b867383e2822 (patch)
tree758c9edddaea9c788f2c71198ab9d47eb1f40457 /guides
parenta4508ed1dc255f3880706cd7389cd82a94403671 (diff)
downloadrails-6054e367f1baf7b8aa051de6d193b867383e2822.tar.gz
rails-6054e367f1baf7b8aa051de6d193b867383e2822.tar.bz2
rails-6054e367f1baf7b8aa051de6d193b867383e2822.zip
removed extra "you"
Diffstat (limited to 'guides')
-rw-r--r--guides/source/form_helpers.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.textile b/guides/source/form_helpers.textile
index 8934667c5e..b6420db798 100644
--- a/guides/source/form_helpers.textile
+++ b/guides/source/form_helpers.textile
@@ -89,7 +89,7 @@ form_tag(:controller => "people", :action => "search", :method => "get", :class
# => '<form accept-charset="UTF-8" action="/people/search?method=get&class=nifty_form" method="post">'
</ruby>
-Here, +method+ and +class+ are appended to the query string of the generated URL because you even though you mean to write two hashes, you really only specified one. So you need to tell Ruby which is which by delimiting the first hash (or both) with curly brackets. This will generate the HTML you expect:
+Here, +method+ and +class+ are appended to the query string of the generated URL because even though you mean to write two hashes, you really only specified one. So you need to tell Ruby which is which by delimiting the first hash (or both) with curly brackets. This will generate the HTML you expect:
<ruby>
form_tag({:controller => "people", :action => "search"}, :method => "get", :class => "nifty_form")