aboutsummaryrefslogtreecommitdiffstats
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
commitb797fdc7e88c5ad7552f1c95081ad3c60507e3ee (patch)
treeeb49501cbc096c12759bc4d92d080dfdfd196710 /lib/rdoc/generator.rb
parent4660cc6fb9bba765ca259bc636d59e8c3c4620b7 (diff)
downloadruby-b797fdc7e88c5ad7552f1c95081ad3c60507e3ee.tar.gz
Separate HTML linking and crossreferencing into separate files.
git-svn-id: svn+ssh://ci.ruby-lang.org/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 0e5b4a8cc0..9859a3244f 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