aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_helper.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2008-02-07 16:50:55 +0000
committerRick Olson <technoweenie@gmail.com>2008-02-07 16:50:55 +0000
commitefa739d73d8108c92ceedb41a862c7b8f028c7e1 (patch)
tree236c2cbea2808d7a7e27c21b69cff2baaacc0c67 /actionpack/lib/action_view/helpers/form_helper.rb
parent8e6638afa4b9fe7a361c81e6d2ede77951b81aff (diff)
downloadrails-efa739d73d8108c92ceedb41a862c7b8f028c7e1.tar.gz
rails-efa739d73d8108c92ceedb41a862c7b8f028c7e1.tar.bz2
rails-efa739d73d8108c92ceedb41a862c7b8f028c7e1.zip
Fix typo in form_helper documentation. Closes #10650 [xaviershay, kampers]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8812 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
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 4d1e913fe3..9db4918d4e 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -175,7 +175,7 @@ module ActionView
#
# def labelled_form_for(record_or_name_or_array, *args, &proc)
# options = args.extract_options!
- # form_for(record_or_name_or_array, *(args << options.merge(:builder => LabellingFormBuiler)), &proc)
+ # form_for(record_or_name_or_array, *(args << options.merge(:builder => LabellingFormBuilder)), &proc)
# end
#
# If you don't need to attach a form to a model instance, then check out FormTagHelper#form_tag.