diff options
author | Paul Nikitochkin <paul.nikitochkin@gmail.com> | 2013-06-29 23:26:06 +0300 |
---|---|---|
committer | Paul Nikitochkin <paul.nikitochkin@gmail.com> | 2013-07-04 23:28:13 +0300 |
commit | 87f249ee365189407dc9c54820a52eda5aee1583 (patch) | |
tree | 20e668ad8763331bf2bbaf8c7cd577fda44d995a /guides | |
parent | 3c719ead414ffd29e71efce185698af979052abb (diff) | |
download | rails-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.md | 6 |
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 |