Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8812

Show
Ignore:
Timestamp:
02/07/08 16:50:55 (1 year ago)
Author:
rick
Message:

Fix typo in form_helper documentation. Closes #10650 [xaviershay, kampers]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r8811 r8812  
    11*SVN* 
     2 
     3* Fix typo in form_helper documentation.  #10650 [xaviershay, kampers] 
    24 
    35* Fix bug with setting Request#format= after the getter has cached the value.  #10889 [cch1] 
  • trunk/actionpack/lib/action_view/helpers/form_helper.rb

    r8786 r8812  
    176176      #   def labelled_form_for(record_or_name_or_array, *args, &proc) 
    177177      #     options = args.extract_options! 
    178       #     form_for(record_or_name_or_array, *(args << options.merge(:builder => LabellingFormBuiler)), &proc) 
     178      #     form_for(record_or_name_or_array, *(args << options.merge(:builder => LabellingFormBuilder)), &proc) 
    179179      #   end 
    180180      #