summaryrefslogtreecommitdiff
path: root/lib/rdoc
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-23 15:27:09 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-23 15:27:09 +0000
commitbf310cb64fff5b45c513d97a4c375f52ecb862c9 (patch)
treec4bf3e3ea76da76beb0e9f4241333bfe739f2f44 /lib/rdoc
parentf7ef694a712d8deccfba67a4860b0272e335f17a (diff)
* 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
Diffstat (limited to 'lib/rdoc')
-rw-r--r--lib/rdoc/ri/descriptions.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rdoc/ri/descriptions.rb b/lib/rdoc/ri/descriptions.rb
index 643d01fea8..9887862e0a 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)