aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2008-12-31 11:24:48 +0000
committerFrederick Cheung <frederick.cheung@gmail.com>2008-12-31 17:06:00 +0000
commitb3f265ac2ecbdd6ab14397230432ea4f584f0439 (patch)
tree60fe4229878ab6047ea486ff89995c7ba59b4ae3 /railties
parent2a37726958d99bc68e9de1191f9db4e0b2312af4 (diff)
downloadrails-b3f265ac2ecbdd6ab14397230432ea4f584f0439.tar.gz
rails-b3f265ac2ecbdd6ab14397230432ea4f584f0439.tar.bz2
rails-b3f265ac2ecbdd6ab14397230432ea4f584f0439.zip
fix typo
Diffstat (limited to 'railties')
-rw-r--r--railties/doc/guides/source/form_helpers.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/form_helpers.txt b/railties/doc/guides/source/form_helpers.txt
index d09ad15a90..587a6a512d 100644
--- a/railties/doc/guides/source/form_helpers.txt
+++ b/railties/doc/guides/source/form_helpers.txt
@@ -52,7 +52,7 @@ Probably the most minimal form often seen on the web is a search form with a sin
3. a text input element, and
4. a submit element.
-IMPORTANT: Always use "GET" as the method for search forms. Benefits are many: users are able to bookmark a specific search and get back to it; browsers cache results of "GET" requests, but not "POST"; and other.
+IMPORTANT: Always use "GET" as the method for search forms. Benefits are many: users are able to bookmark a specific search and get back to it; browsers cache results of "GET" requests, but not "POST"; and others.
To create that, we will use `form_tag`, `label_tag`, `text_field_tag` and `submit_tag`, respectively.