1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Restore correct :nodoc: behavior with nested classes

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
dave 2004-10-26 14:33:17 +00:00
parent dfd322b36c
commit 8a0d7d99ae
2 changed files with 7 additions and 1 deletions

View file

@ -233,7 +233,8 @@ module RDoc
else
cls = class_type.new(name, superclass)
puts "Adding class/module #{name} to #@name" if $DEBUG
collection[name] = cls if @document_self && !@done_documenting
# collection[name] = cls if @document_self && !@done_documenting
collection[name] = cls if !@done_documenting
cls.parent = self
end
cls