summaryrefslogtreecommitdiff
path: root/lib/rdoc/single_class.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/single_class.rb')
-rw-r--r--lib/rdoc/single_class.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/rdoc/single_class.rb b/lib/rdoc/single_class.rb
index 6a7b67deb3..dd16529648 100644
--- a/lib/rdoc/single_class.rb
+++ b/lib/rdoc/single_class.rb
@@ -22,5 +22,9 @@ class RDoc::SingleClass < RDoc::ClassModule
"class << #{full_name}"
end
+ def pretty_print q # :nodoc:
+ q.group 2, "[class << #{full_name}", "]" do
+ next
+ end
+ end
end
-