summaryrefslogtreecommitdiffstats
path: root/lib/rdoc/generator.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-12 22:23:00 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-12 22:23:00 +0000
commit33fc7dc3cfa98bbbc4b5c615edb23c37f588b5e4 (patch)
treeeb49501cbc096c12759bc4d92d080dfdfd196710 /lib/rdoc/generator.rb
parenta8589e18fc1824fa642febc61532a1d2b8418716 (diff)
downloadruby-33fc7dc3cfa98bbbc4b5c615edb23c37f588b5e4.tar.gz
ruby-33fc7dc3cfa98bbbc4b5c615edb23c37f588b5e4.tar.xz
ruby-33fc7dc3cfa98bbbc4b5c615edb23c37f588b5e4.zip
Separate HTML linking and crossreferencing into separate files.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15453 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/generator.rb')
-rw-r--r--lib/rdoc/generator.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rdoc/generator.rb b/lib/rdoc/generator.rb
index 0e5b4a8cc..9859a3244 100644
--- a/lib/rdoc/generator.rb
+++ b/lib/rdoc/generator.rb
@@ -1,7 +1,7 @@
require 'cgi'
require 'rdoc'
require 'rdoc/options'
-require 'rdoc/markup/to_html_hyperlink'
+require 'rdoc/markup/to_html_crossref'
require 'rdoc/template'
module RDoc::Generator
@@ -81,7 +81,7 @@ module RDoc::Generator
return '' unless str
unless defined? @formatter then
- @formatter = RDoc::Markup::ToHtmlHyperlink.new(path, self,
+ @formatter = RDoc::Markup::ToHtmlCrossref.new(path, self,
@options.show_hash)
end