diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-23 15:27:09 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-23 15:27:09 +0000 |
commit | fc802b81b25ef072ee7ed4c57387c329e0932080 (patch) | |
tree | c4bf3e3ea76da76beb0e9f4241333bfe739f2f44 /lib/rdoc | |
parent | ebadc3faaf095ba6359c50cc33b657c2f6fed983 (diff) | |
download | ruby-fc802b81b25ef072ee7ed4c57387c329e0932080.tar.gz ruby-fc802b81b25ef072ee7ed4c57387c329e0932080.tar.xz ruby-fc802b81b25ef072ee7ed4c57387c329e0932080.zip |
* lib/rdoc/ri/descriptions.rb: fixed wrong class nestings.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc')
-rw-r--r-- | lib/rdoc/ri/descriptions.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rdoc/ri/descriptions.rb b/lib/rdoc/ri/descriptions.rb index 643d01fea..9887862e0 100644 --- a/lib/rdoc/ri/descriptions.rb +++ b/lib/rdoc/ri/descriptions.rb @@ -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) |