diff options
author | Michel Grootjans <michel.grootjans@gmail.com> | 2012-11-20 14:19:04 +0100 |
---|---|---|
committer | Michel Grootjans <michel.grootjans@gmail.com> | 2012-11-20 14:19:04 +0100 |
commit | 7521698c1741d40da28dbcf95e6cd45a704d337d (patch) | |
tree | 0d0b3f70682435e210155237c10402e229cda55c /guides | |
parent | 62c34f0df29e3c33a632f54e8bd1ae350a14c15f (diff) | |
download | rails-7521698c1741d40da28dbcf95e6cd45a704d337d.tar.gz rails-7521698c1741d40da28dbcf95e6cd45a704d337d.tar.bz2 rails-7521698c1741d40da28dbcf95e6cd45a704d337d.zip |
remove previous commit
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/engines.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index caa2e53f52..f9bbff1c4c 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -341,7 +341,7 @@ Next, the partial that this line will render needs to exist. Create a new direct ```html+erb <h3>New comment</h3> -<% form_for [@post, @post.comments.build] do |f| %> +<%= form_for [@post, @post.comments.build] do |f| %> <p> <%= f.label :text %><br /> <%= f.text_area :text %> |