From b7d8f5a3299788fe8aa152c542e27375ec97a81b Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Sat, 10 Apr 2010 16:53:25 -0700 Subject: [PATCH] removes some duplication in previous edit --- actionpack/lib/action_view/helpers/form_helper.rb | 5 ----- 1 file changed, 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 Helpers # 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 -- GitLab