diff options
author | dharmatech <wayo.cavazos@gmail.com> | 2011-09-12 15:55:01 -0500 |
---|---|---|
committer | dharmatech <wayo.cavazos@gmail.com> | 2011-09-12 15:55:01 -0500 |
commit | 7d235b972b29659d94e2b290be6e0ad3bc6a2668 (patch) | |
tree | eed7df166be27eba3269a1e2ae05b1965dfaf73f /railties/guides/source/getting_started.textile | |
parent | c5c448221f74539142ddeeee2d64d39cf8b4812c (diff) | |
download | rails-7d235b972b29659d94e2b290be6e0ad3bc6a2668.tar.gz rails-7d235b972b29659d94e2b290be6e0ad3bc6a2668.tar.bz2 rails-7d235b972b29659d94e2b290be6e0ad3bc6a2668.zip |
getting_started.textile: Fix typo and split up a sentence in section "Building a Multi-Model Form"
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r-- | railties/guides/source/getting_started.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 37aabcda83..b8dd4be73b 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -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. |