aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/nested_model_forms.textile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-06-02 16:18:03 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-06-02 16:18:03 -0500
commit942fe6514cc0db10c04fd2b46f8e1537beabef71 (patch)
tree8b9d057a91861756260aea7990308975305ab475 /railties/guides/source/nested_model_forms.textile
parent02512914ae547eb664a78c0f6084b121d5283a61 (diff)
parentffe001f19dbbd9e697f6300650779f5e1391ce1e (diff)
downloadrails-942fe6514cc0db10c04fd2b46f8e1537beabef71.tar.gz
rails-942fe6514cc0db10c04fd2b46f8e1537beabef71.tar.bz2
rails-942fe6514cc0db10c04fd2b46f8e1537beabef71.zip
Merge branch 'master' of github.com:rails/rails
Diffstat (limited to 'railties/guides/source/nested_model_forms.textile')
-rw-r--r--railties/guides/source/nested_model_forms.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/nested_model_forms.textile b/railties/guides/source/nested_model_forms.textile
index 4a79902232..39b0c32f24 100644
--- a/railties/guides/source/nested_model_forms.textile
+++ b/railties/guides/source/nested_model_forms.textile
@@ -143,7 +143,7 @@ Now add a nested form for the +address+ association:
<%= form_for @person do |f| %>
<%= f.text_field :name %>
- <% f.fields_for :address do |af| %>
+ <%= f.fields_for :address do |af| %>
<%= f.text_field :street %>
<% end %>
<% end %>
@@ -184,7 +184,7 @@ The form code for an association collection is pretty similar to that of a singl
<%= form_for @person do |f| %>
<%= f.text_field :name %>
- <% f.fields_for :projects do |pf| %>
+ <%= f.fields_for :projects do |pf| %>
<%= f.text_field :name %>
<% end %>
<% end %>