diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 76c0f386040f3..fa9e54b8fd429 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* [DOCS] fix reference to ActionController::Macros::AutoComplete for #text_field_with_auto_complete. Closes #2578 [Jan Prill] + * Make sure html_document is reset between integration test requests. [ctm] * Set session to an empty hash if :new_session => false and no session cookie or param is present. CGI::Session was raising an unrescued ArgumentError. [Josh Susser] diff --git a/actionpack/lib/action_view/helpers/java_script_macros_helper.rb b/actionpack/lib/action_view/helpers/java_script_macros_helper.rb index d4a14565619b3..463fe0e1200a8 100644 --- a/actionpack/lib/action_view/helpers/java_script_macros_helper.rb +++ b/actionpack/lib/action_view/helpers/java_script_macros_helper.rb @@ -189,9 +189,9 @@ def auto_complete_result(entries, field, phrase = nil) # Wrapper for text_field with added AJAX autocompletion functionality. # # In your controller, you'll need to define an action called - # auto_complete_for_object_method to respond the AJAX calls, + # auto_complete_for to respond the AJAX calls, # - # See the RDoc on ActionController::AutoComplete to learn more about this. + # See the RDoc on ActionController::Macros::AutoComplete to learn more about this. def text_field_with_auto_complete(object, method, tag_options = {}, completion_options = {}) (completion_options[:skip_style] ? "" : auto_complete_stylesheet) + text_field(object, method, tag_options) +