summaryrefslogtreecommitdiff
path: root/lib/rdoc/ri.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/ri.rb')
-rw-r--r--lib/rdoc/ri.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/rdoc/ri.rb b/lib/rdoc/ri.rb
index a3a858e673..17da3fbe83 100644
--- a/lib/rdoc/ri.rb
+++ b/lib/rdoc/ri.rb
@@ -1,8 +1,18 @@
require 'rdoc'
+##
+# Namespace for the ri command line tool's implementation.
+#
+# See <tt>ri --help</tt> for details.
+
module RDoc::RI
+ ##
+ # Base RI error class
+
class Error < RDoc::Error; end
end
+require 'rdoc/ri/store'
+