1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

getting_started.textile: Fix typo and split up a sentence in section "Building a Multi-Model Form"

This commit is contained in:
dharmatech 2011-09-12 15:55:01 -05:00
parent c5c448221f
commit 7d235b972b

View file

@ -1719,8 +1719,8 @@ This example shows another option of the render helper, being able to pass in
local variables, in this case, we want the local variable +form+ in the partial
to refer to the +post_form+ object.
We also add a <tt>@post.tags.build</tt> at the top of this form, this is to make
sure there is a new tag ready to have it's name filled in by the user. If you do
We also add a <tt>@post.tags.build</tt> at the top of this form. This is to make
sure there is a new tag ready to have its name filled in by the user. If you do
not build the new tag, then the form will not appear as there is no new Tag
object ready to create.