Skip to content

Commit 24e5f45

Browse files
committed
Use commas instead of with
1 parent 0712ad9 commit 24e5f45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scaladoc/src/dotty/tools/scaladoc/translators/ScalaSignatureUtils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ case class SignatureBuilder(content: Signature = Nil) extends ScalaSignatureUtil
6363
case Nil => this
6464
case extendType :: withTypes =>
6565
val extendPart = keyword(" extends ").signature(extendType.signature)
66-
withTypes.foldLeft(extendPart)((bdr2, tpe) => bdr2.keyword(" with ").signature(tpe.signature))
66+
withTypes.foldLeft(extendPart)((bdr2, tpe) => bdr2.keyword(", ").signature(tpe.signature))
6767

6868
def modifiersAndVisibility(t: Member) =
6969
val (prefixMods, suffixMods) = t.modifiers.partition(_.prefix)

0 commit comments

Comments
 (0)