aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rdoc/single_class.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-20 03:22:49 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-20 03:22:49 +0000
commit2ef9c50c6e405717d06362787c4549ca4f1c6485 (patch)
treeee99486567461dd5796f3d6edcc9e204187f2666 /lib/rdoc/single_class.rb
parentd7effd506f5b91a636f2e6452ef1946b923007c7 (diff)
downloadruby-2ef9c50c6e405717d06362787c4549ca4f1c6485.tar.gz
Import RDoc 3
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/single_class.rb')
-rw-r--r--lib/rdoc/single_class.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rdoc/single_class.rb b/lib/rdoc/single_class.rb
index 1226d56f84..60336a759b 100644
--- a/lib/rdoc/single_class.rb
+++ b/lib/rdoc/single_class.rb
@@ -5,8 +5,9 @@ require 'rdoc/class_module'
class RDoc::SingleClass < RDoc::ClassModule
+ # Adds the superclass to the included modules.
def ancestors
- includes + [superclass]
+ superclass ? super + [superclass] : super
end
end