diff options
author | ma2gedev <takayuki.1229@gmail.com> | 2013-03-22 00:52:37 +0900 |
---|---|---|
committer | ma2gedev <takayuki.1229@gmail.com> | 2013-03-22 01:04:54 +0900 |
commit | 6f9baaec790a59eed3813731c54e43a22795a04b (patch) | |
tree | 40c961d1ce6b3a077be1e6bd308fac815246cefc /actionpack/lib/action_view/helpers | |
parent | 573df1cf2a5d5d1f288c8a4a5d76194675141832 (diff) | |
download | rails-6f9baaec790a59eed3813731c54e43a22795a04b.tar.gz rails-6f9baaec790a59eed3813731c54e43a22795a04b.tar.bz2 rails-6f9baaec790a59eed3813731c54e43a22795a04b.zip |
Remove duplicated accepts_nested_attributes description
there are just the same description about accepts_nested_attributes [ci skip]
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_helper.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index 3dae1fc87a..ec89da71a1 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -655,14 +655,6 @@ module ActionView # ... # <% end %> # - # When projects is already an association on Person you can use - # +accepts_nested_attributes_for+ to define the writer method for you: - # - # class Person < ActiveRecord::Base - # has_many :projects - # accepts_nested_attributes_for :projects - # end - # # If you want to destroy any of the associated models through the # form, you have to enable it first using the <tt>:allow_destroy</tt> # option for +accepts_nested_attributes_for+: @@ -1425,14 +1417,6 @@ module ActionView # ... # <% end %> # - # When projects is already an association on Person you can use - # +accepts_nested_attributes_for+ to define the writer method for you: - # - # class Person < ActiveRecord::Base - # has_many :projects - # accepts_nested_attributes_for :projects - # end - # # If you want to destroy any of the associated models through the # form, you have to enable it first using the <tt>:allow_destroy</tt> # option for +accepts_nested_attributes_for+: |