aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-04-10 16:53:25 -0700
committerXavier Noria <fxn@hashref.com>2010-04-10 16:53:25 -0700
commitb7d8f5a3299788fe8aa152c542e27375ec97a81b (patch)
tree43ae51e88d6b148cef666882d66ddd512ce7e304
parentef2ec071deba316d2f1f756f9591a153eb951219 (diff)
downloadrails-b7d8f5a3299788fe8aa152c542e27375ec97a81b.tar.gz
rails-b7d8f5a3299788fe8aa152c542e27375ec97a81b.tar.bz2
rails-b7d8f5a3299788fe8aa152c542e27375ec97a81b.zip
removes some duplication in previous edit
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb5
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