From 72da6473229d48bca4867f3d26bde11f2889cd29 Mon Sep 17 00:00:00 2001 From: "Aaron S. Hawley" Date: Wed, 31 Jul 2019 11:50:48 -0400 Subject: [PATCH] Fix unmoored Scaladoc comments These warnings are for nested definitions with Scaladoc comments. --- .../scala/tools/nsc/doc/base/CommentFactoryBase.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scaladoc/scala/tools/nsc/doc/base/CommentFactoryBase.scala b/src/scaladoc/scala/tools/nsc/doc/base/CommentFactoryBase.scala index 9a05b7ff0d4a..971b9401bee6 100644 --- a/src/scaladoc/scala/tools/nsc/doc/base/CommentFactoryBase.scala +++ b/src/scaladoc/scala/tools/nsc/doc/base/CommentFactoryBase.scala @@ -227,7 +227,7 @@ trait CommentFactoryBase { this: MemberLookupBase => markedTagComment.linesIterator.toList map cleanLine } - /** Parses a comment (in the form of a list of lines) to a `Comment` + /* Parses a comment (in the form of a list of lines) to a `Comment` * instance, recursively on lines. To do so, it splits the whole comment * into main body and tag bodies, then runs the `WikiParser` on each body * before creating the comment instance. @@ -634,7 +634,7 @@ trait CommentFactoryBase { this: MemberLookupBase => def contentNonEmpty(content: Inline) = content != Text("") - /** + /* Parse cells of a table. * @param cellStartMark The char indicating the start or end of a cell * @param finalizeRow Function to invoke when the row has been fully parsed */