summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/doc/html/Page.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-02-25 01:02:10 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-02-25 09:56:40 +0100
commitd6527d5083d77f67d08749b800938c97e0fcf13a (patch)
treee4bda9e5d8c56ca8ce7375e7e4de19bb479d1722 /src/compiler/scala/tools/nsc/doc/html/Page.scala
parent6d94b35270485a5ec64f32035537c3c4c0f02dae (diff)
downloadscala-d6527d5083d77f67d08749b800938c97e0fcf13a.tar.gz
scala-d6527d5083d77f67d08749b800938c97e0fcf13a.tar.bz2
scala-d6527d5083d77f67d08749b800938c97e0fcf13a.zip
Address some Scaladocrot
- @param tags whose name drifted from the corresponding parameter - Remove or complete a few stray stub comments (@param foo ...) - Use @tparam where appropriate.
Diffstat (limited to 'src/compiler/scala/tools/nsc/doc/html/Page.scala')
-rw-r--r--src/compiler/scala/tools/nsc/doc/html/Page.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/doc/html/Page.scala b/src/compiler/scala/tools/nsc/doc/html/Page.scala
index ef9beb1dce..91939cf3de 100644
--- a/src/compiler/scala/tools/nsc/doc/html/Page.scala
+++ b/src/compiler/scala/tools/nsc/doc/html/Page.scala
@@ -45,7 +45,7 @@ abstract class Page {
/** Writes this page as a file. The file's location is relative to the
* generator's site root, and the encoding is also defined by the generator.
- * @param generator The generator that is writing this page. */
+ * @param site The generator that is writing this page. */
def writeFor(site: HtmlFactory): Unit
def kindToString(mbr: MemberEntity) =
@@ -84,7 +84,7 @@ abstract class Page {
}
/** A relative link from this page to some destination class entity.
- * @param destEntity The class or object entity that the link will point to. */
+ * @param destClass The class or object entity that the link will point to. */
def relativeLinkTo(destClass: TemplateEntity): String =
relativeLinkTo(templateToPath(destClass))