diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-23 23:26:39 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-23 23:26:39 +0530 |
commit | 91305adef8e94c2bbc3b771747dc0fbb00e3a171 (patch) | |
tree | 64ee12feaa67a6ee671091e11ca802e978875546 /actionpack/lib/action_view | |
parent | 9ae0c6678784379de3eab601d9ee39a17955b5e1 (diff) | |
parent | 1c94868033c631dcb44d705f70433a64d48e0938 (diff) | |
download | rails-91305adef8e94c2bbc3b771747dc0fbb00e3a171.tar.gz rails-91305adef8e94c2bbc3b771747dc0fbb00e3a171.tar.bz2 rails-91305adef8e94c2bbc3b771747dc0fbb00e3a171.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index ad8885b708..ac150882b1 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -342,7 +342,7 @@ module ActionView # Example: # # <%= form_for(@post) do |f| %> - # <% f.fields_for(:comments, :include_id => false) do |cf| %> + # <%= f.fields_for(:comments, :include_id => false) do |cf| %> # ... # <% end %> # <% end %> |