# File lib/rdoc/ri/driver.rb, line 694
  def display_method name
    found = load_methods_matching name

    raise NotFoundError, name if found.empty?

    filtered = filter_methods found, name

    out = method_document name, filtered

    display out
  end