aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2013-07-04 13:34:33 -0700
committerSteve Klabnik <steve@steveklabnik.com>2013-07-04 13:34:33 -0700
commit3caf9a74eb49e6946aee9bcef6dd5d67bb6dab0e (patch)
tree20e668ad8763331bf2bbaf8c7cd577fda44d995a /guides/source
parent3c719ead414ffd29e71efce185698af979052abb (diff)
parent87f249ee365189407dc9c54820a52eda5aee1583 (diff)
downloadrails-3caf9a74eb49e6946aee9bcef6dd5d67bb6dab0e.tar.gz
rails-3caf9a74eb49e6946aee9bcef6dd5d67bb6dab0e.tar.bz2
rails-3caf9a74eb49e6946aee9bcef6dd5d67bb6dab0e.zip
Merge pull request #11187 from jetthoughts/form_for_explonation_in_getting_started
Added link to Form Helper article from getting strated [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/getting_started.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 26360e815b..caa85b2ab0 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -1021,9 +1021,9 @@ content:
```
Everything except for the `form_for` declaration remained the same.
-How `form_for` can figure out the right `action` and `method` attributes
-when building the form will be explained in just a moment. For now, let's update the
-`app/views/posts/new.html.erb` view to use this new partial, rewriting it
+How `form_for` can figure out the right `action` and `method` attributes when building the form
+will be explained in [just a moment](/form_helpers.html#binding-a-form-to-an-object).
+For now, let's update the `app/views/posts/new.html.erb` view to use this new partial, rewriting it
completely:
```html+erb