Fix in auto_complete_result documentation. closes #5096. [medlar@medlar.it]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4478 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Rick Olson 2006-06-21 02:18:41 +00:00
parent 53924078d0
commit 5525b79b63

@ -161,7 +161,7 @@ def auto_complete_field(field_id, options = {})
# @items = Item.find(:all,
# :conditions => [ 'LOWER(description) LIKE ?',
# '%' + request.raw_post.downcase + '%' ])
# render :inline => '<%= auto_complete_result(@items, 'description') %>'
# render :inline => "<%= auto_complete_result(@items, 'description') %>"
# end
#
# The auto_complete_result can of course also be called from a view belonging to the