diff options
author | Frederick Cheung <frederick.cheung@gmail.com> | 2008-12-31 11:24:48 +0000 |
---|---|---|
committer | Frederick Cheung <frederick.cheung@gmail.com> | 2008-12-31 17:06:00 +0000 |
commit | b3f265ac2ecbdd6ab14397230432ea4f584f0439 (patch) | |
tree | 60fe4229878ab6047ea486ff89995c7ba59b4ae3 /railties/doc | |
parent | 2a37726958d99bc68e9de1191f9db4e0b2312af4 (diff) | |
download | rails-b3f265ac2ecbdd6ab14397230432ea4f584f0439.tar.gz rails-b3f265ac2ecbdd6ab14397230432ea4f584f0439.tar.bz2 rails-b3f265ac2ecbdd6ab14397230432ea4f584f0439.zip |
fix typo
Diffstat (limited to 'railties/doc')
-rw-r--r-- | railties/doc/guides/source/form_helpers.txt | 2 |
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. |