summaryrefslogtreecommitdiff
path: root/lib/rdoc/template.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-26 16:14:19 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-26 16:14:19 +0000
commitc42a631063e79fab2369c1983a6f2a075b584f62 (patch)
tree2ea8c0381d5d491a5f46e210239e1494df57d240 /lib/rdoc/template.rb
parent2142a5af51ce882641a060e69bc58c7322ff5188 (diff)
Import RDoc 2.0.0 r56.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/template.rb')
-rw-r--r--lib/rdoc/template.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rdoc/template.rb b/lib/rdoc/template.rb
index aa35927c8b..53d0e3ce68 100644
--- a/lib/rdoc/template.rb
+++ b/lib/rdoc/template.rb
@@ -1,10 +1,12 @@
require 'erb'
+module RDoc; end
+
##
-# An ERB wrapper.
+# An ERb wrapper that allows nesting of one ERb template inside another.
#
# This TemplatePage operates similarly to RDoc 1.x's TemplatePage, but uses
-# ERB instead of a custom template language.
+# ERb instead of a custom template language.
#
# Converting from a RDoc 1.x template to an RDoc 2.x template is fairly easy.
#
@@ -24,8 +26,6 @@ require 'erb'
#
# So you can see what is being used inside which loop.
-module RDoc
-end
class RDoc::TemplatePage
##