summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilippus Baalman <philippus@gmail.com>2017-02-10 14:25:47 +0100
committerPhilippus Baalman <philippus@gmail.com>2017-02-10 14:25:47 +0100
commitc895b36849a15af908ae2e286fd982e8f8c26337 (patch)
tree0dee4c6b157a1b718e78e19da6b6b93dbe4b6368 /src
parent502e3c6296e5e997549b7e496e0bbfa62c522110 (diff)
downloadscala-c895b36849a15af908ae2e286fd982e8f8c26337.tar.gz
scala-c895b36849a15af908ae2e286fd982e8f8c26337.tar.bz2
scala-c895b36849a15af908ae2e286fd982e8f8c26337.zip
fixed broken references after move from 'model' to 'base'
Diffstat (limited to 'src')
-rw-r--r--src/scaladoc/scala/tools/nsc/doc/base/comment/Body.scala5
-rw-r--r--src/scaladoc/scala/tools/nsc/doc/base/comment/Comment.scala2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/scaladoc/scala/tools/nsc/doc/base/comment/Body.scala b/src/scaladoc/scala/tools/nsc/doc/base/comment/Body.scala
index ac5fec80b3..7f4e52e88d 100644
--- a/src/scaladoc/scala/tools/nsc/doc/base/comment/Body.scala
+++ b/src/scaladoc/scala/tools/nsc/doc/base/comment/Body.scala
@@ -11,8 +11,9 @@ package comment
import scala.collection._
/** A body of text. A comment has a single body, which is composed of
- * at least one block. Inside every body is exactly one summary (see
- * [[scala.tools.nsc.doc.model.comment.Summary]]). */
+ * at least one block. Inside every body is exactly one summary.
+ * @see [[Summary]]
+ */
final case class Body(blocks: Seq[Block]) {
/** The summary text of the comment body. */
diff --git a/src/scaladoc/scala/tools/nsc/doc/base/comment/Comment.scala b/src/scaladoc/scala/tools/nsc/doc/base/comment/Comment.scala
index 5d0b6782bc..55527e43a1 100644
--- a/src/scaladoc/scala/tools/nsc/doc/base/comment/Comment.scala
+++ b/src/scaladoc/scala/tools/nsc/doc/base/comment/Comment.scala
@@ -12,7 +12,7 @@ import scala.collection._
/** A Scaladoc comment and all its tags.
*
- * '''Note:''' the only instantiation site of this class is in [[CommentFactory]].
+ * '''Note:''' the only instantiation site of this class is in [[model.CommentFactory]].
*
* @author Manohar Jonnalagedda
* @author Gilles Dubochet */