diff options
author | Xavier Noria <fxn@hashref.com> | 2010-04-10 16:53:25 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-04-10 16:53:25 -0700 |
commit | b7d8f5a3299788fe8aa152c542e27375ec97a81b (patch) | |
tree | 43ae51e88d6b148cef666882d66ddd512ce7e304 /actionpack | |
parent | ef2ec071deba316d2f1f756f9591a153eb951219 (diff) | |
download | rails-b7d8f5a3299788fe8aa152c542e27375ec97a81b.tar.gz rails-b7d8f5a3299788fe8aa152c542e27375ec97a81b.tar.bz2 rails-b7d8f5a3299788fe8aa152c542e27375ec97a81b.zip |
removes some duplication in previous edit
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_helper.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index 92ec6ee632..192b365bee 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -11,11 +11,6 @@ module ActionView # Form helpers are designed to make working with resources much easier # compared to using vanilla HTML. # - # There are methods to generate all kinds of input fields and the form - # element itself. They get convenient names, IDs, endpoints, etc. so that - # you can work at the model level. Thanks to conventions in the HTML they - # generate controllers receive form data nicely structured in +params+. - # # Model-based forms are created with +form_for+. That method yields a form # builder that knows the model the form is about. The form builder is thus # able to generate default values for input fields that correspond to model |