Display a list of method names
Source Code
# File 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
<code/>and<pre/>for code samples.