summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan@lightbend.com>2017-02-16 12:37:45 -0800
committerGitHub <noreply@github.com>2017-02-16 12:37:45 -0800
commit7b4567627c2b308866251b88aee3c2e6c72941f1 (patch)
tree2a67321522be9ba8a267c8156f243224feeeb8be /src
parent111286e0f6c233371bf708476d037263fc468621 (diff)
parentc895b36849a15af908ae2e286fd982e8f8c26337 (diff)
downloadscala-7b4567627c2b308866251b88aee3c2e6c72941f1.tar.gz
scala-7b4567627c2b308866251b88aee3c2e6c72941f1.tar.bz2
scala-7b4567627c2b308866251b88aee3c2e6c72941f1.zip
Merge pull request #5688 from Philippus/fix-scaladoc-base-references
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 */