aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorPaul Nikitochkin <paul.nikitochkin@gmail.com>2013-06-29 23:26:06 +0300
committerPaul Nikitochkin <paul.nikitochkin@gmail.com>2013-07-04 23:28:13 +0300
commit87f249ee365189407dc9c54820a52eda5aee1583 (patch)
tree20e668ad8763331bf2bbaf8c7cd577fda44d995a /guides
parent3c719ead414ffd29e71efce185698af979052abb (diff)
downloadrails-87f249ee365189407dc9c54820a52eda5aee1583.tar.gz
rails-87f249ee365189407dc9c54820a52eda5aee1583.tar.bz2
rails-87f249ee365189407dc9c54820a52eda5aee1583.zip
Added link to Form Helper article from getting strated [ci skip]
Diffstat (limited to 'guides')
-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