aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/active_record_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/helpers/active_record_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/active_record_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/active_record_helper.rb b/actionpack/lib/action_view/helpers/active_record_helper.rb
index a2b5a8b004..07ede179e6 100644
--- a/actionpack/lib/action_view/helpers/active_record_helper.rb
+++ b/actionpack/lib/action_view/helpers/active_record_helper.rb
@@ -83,9 +83,9 @@ module ActionView
# Returns a string with a div containing all the error messages for the object located as an instance variable by the name
# of <tt>object_name</tt>. This div can be tailored by the following options:
#
- # ::header_tag: Used for the header of the error div (default: h2)
- # ::id: The id of the error div (default: errorExplanation)
- # ::class: The class of the error div (default: errorExplanation)
+ # * <tt>header_tag</tt> - Used for the header of the error div (default: h2)
+ # * <tt>id</tt> - The id of the error div (default: errorExplanation)
+ # * <tt>class</tt> - The class of the error div (default: errorExplanation)
def error_messages_for(object_name, options={})
object = instance_eval "@#{object_name}"
unless object.errors.empty?