Flowdock
method

render_method_arguments

Importance_0
v2_2_9 - Show latest stable - 0 notes - Class: Driver
render_method_arguments(out, arglists) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/ri/driver.rb, line 1395
  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
Register or log in to add new notes.