summaryrefslogtreecommitdiff
path: root/lib/rdoc/ri/display.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/ri/display.rb')
-rw-r--r--lib/rdoc/ri/display.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/rdoc/ri/display.rb b/lib/rdoc/ri/display.rb
index 05a7cf253d..7b0158c18a 100644
--- a/lib/rdoc/ri/display.rb
+++ b/lib/rdoc/ri/display.rb
@@ -5,8 +5,8 @@ require 'rdoc/ri'
begin
require('readline')
require('abbrev')
- CAN_USE_READLINE = true
-rescue
+ CAN_USE_READLINE = true # HACK use an RDoc namespace constant
+rescue LoadError
CAN_USE_READLINE = false
end
@@ -53,7 +53,7 @@ class RDoc::RI::DefaultDisplay
def display_class_info(klass)
page do
- superclass = klass.superclass_string
+ superclass = klass.superclass
if superclass
superclass = " < " + superclass
@@ -217,7 +217,7 @@ class RDoc::RI::DefaultDisplay
end
method_names.sort!
- @formatter.wrap method_names.join(',')
+ @formatter.wrap method_names.join(', ')
end
end
@@ -390,4 +390,3 @@ class RDoc::RI::DefaultDisplay
end
end
-