aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_helper.rb
diff options
context:
space:
mode:
authorMark Thomson <nzl216@gmail.com>2012-03-08 15:46:08 -0600
committerMark Thomson <nzl216@gmail.com>2012-03-08 15:46:08 -0600
commit177734836fc66fc9f1076dc99c6641c42348566e (patch)
tree99edbcd8a21d060e52605c26c02c5a19828fb7f9 /actionpack/lib/action_view/helpers/form_helper.rb
parent188d1d27876018c492280059b3d721be9afcc231 (diff)
downloadrails-177734836fc66fc9f1076dc99c6641c42348566e.tar.gz
rails-177734836fc66fc9f1076dc99c6641c42348566e.tar.bz2
rails-177734836fc66fc9f1076dc99c6641c42348566e.zip
Small correction to the description of the role of the form builder.
(endpoints are generated by form_for without reference to the form builder)
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb2
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 7492ef56c6..6de53bbb95 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -19,7 +19,7 @@ module ActionView
# Forms for models 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
- # attributes, and also convenient names, IDs, endpoints, etc.
+ # attributes, and also convenient names, and IDs, etc.
#
# Conventions in the generated field names allow controllers to receive form
# data nicely structured in +params+ with no effort on your side.