class RDoc::RI::Driver

def render_method_arguments out, arglists # :nodoc:

:nodoc:
def render_method_arguments out, arglists # :nodoc:
  return unless arglists
  arglists = arglists.chomp.split "\n"
  arglists = arglists.map { |line| line + "\n" }
  out << RDoc::Markup::Verbatim.new(*arglists)
  out << RDoc::Markup::Rule.new(1)
end