class RDoc::RI::Driver

def add_method_list(out, methods, name)

def add_method_list(out, methods, name)
  return if methods.empty?
  out << RDoc::Markup::Heading.new(1, "#{name}:")
  out << RDoc::Markup::BlankLine.new
  if @use_stdout and !@interactive then
    out.concat methods.map { |method|
      RDoc::Markup::Verbatim.new method
    }
  else
    out << RDoc::Markup::IndentedParagraph.new(2, methods.join(', '))
  end
  out << RDoc::Markup::BlankLine.new
end