This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
display_method_list(methods)
public
Display a list of method names
# File lib/rdoc/ri/ri_display.rb, line 146
def display_method_list(methods)
page do
puts "More than one method matched your request. You can refine"
puts "your search by asking for information on one of:\n\n"
@formatter.wrap(methods.map {|m| m.full_name} .join(", "))
end
end