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

* lib/rdoc/ri/descriptions.rb: fixed wrong class nestings.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-04-23 15:27:09 +00:00
parent f7ef694a71
commit bf310cb64f
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Thu Apr 24 00:26:06 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* lib/rdoc/ri/descriptions.rb: fixed wrong class nestings.
Thu Apr 24 00:20:01 2008 Yusuke Endoh <mame@tsg.ne.jp>
* test/ruby/test_settracefunc.rb: add a test for set_trace_func.

View file

@ -8,7 +8,7 @@ require 'rdoc/ri'
# the documentation
#++
class RDoc::RI::RDoc::RI::NamedThing
class RDoc::RI::NamedThing
attr_reader :name
def initialize(name)
@name = name
@ -26,9 +26,9 @@ class RDoc::RI::RDoc::RI::NamedThing
end
end
class RDoc::RI::AliasName < RDoc::RI::RDoc::RI::NamedThing; end
class RDoc::RI::AliasName < RDoc::RI::NamedThing; end
class RDoc::RI::Attribute < RDoc::RI::RDoc::RI::NamedThing
class RDoc::RI::Attribute < RDoc::RI::NamedThing
attr_reader :rw, :comment
def initialize(name, rw, comment)
super(name)