aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2008-12-31 18:39:32 +0000
committerFrederick Cheung <frederick.cheung@gmail.com>2008-12-31 18:39:32 +0000
commitc525059a98cb50fb13f470895865cf4cfb25ac92 (patch)
treee6fec79147853ef9c62ae7d32fe122aeeb6a77da /railties
parentc3dae67b79217945e0d2857d3d22e55ffe1cbb8c (diff)
downloadrails-c525059a98cb50fb13f470895865cf4cfb25ac92.tar.gz
rails-c525059a98cb50fb13f470895865cf4cfb25ac92.tar.bz2
rails-c525059a98cb50fb13f470895865cf4cfb25ac92.zip
typos
Diffstat (limited to 'railties')
-rw-r--r--railties/doc/guides/source/form_helpers.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/doc/guides/source/form_helpers.txt b/railties/doc/guides/source/form_helpers.txt
index e9c75d5121..1700708284 100644
--- a/railties/doc/guides/source/form_helpers.txt
+++ b/railties/doc/guides/source/form_helpers.txt
@@ -257,8 +257,8 @@ Now switch to the view. The first thing to remember is to use the `form_for` hel
There are a few things to note here:
-1. `:article` is the name of the model and `@article` is our record.
-2. There is a single hash of options. Routing options are passed inside `:url` hash, html options are passed in the `:html` hash.
+1. `:article` is the name of the model and `@article` is the record.
+2. There is a single hash of options. Routing options are passed inside `:url` hash, HTML options are passed in the `:html` hash.
3. The `form_for` method yields *a form builder* object (the `f` variable).
4. Methods to create form controls are called *on* the form builder object `f`