This method is deprecated or moved on the latest stable version. The last existing version (v1_9_1_378) is shown here.
list_known_classes(classes)
List the classes in classes.
# File lib/rdoc/ri/display.rb, line 329 def list_known_classes(classes) if classes.empty? warn_no_database else page do @formatter.draw_line "Known classes and modules" @formatter.blankline @formatter.wrap classes.sort.join(', ') end end end