Skip to content

Commit b4074b1

Browse files
Merge pull request #4475 from dotty-staging/fix-#4408
Fix #4408: Remove extra highlighting
2 parents f2814c3 + 66e8afe commit b4074b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/reporting/diagnostic/messages.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ object messages {
352352
}
353353

354354
val closeMember = closest match {
355-
case (n, sym) :: Nil => hl""" - did you mean `${s"$siteName.$n"}`?"""
355+
case (n, sym) :: Nil => s" - did you mean `$siteName.$n`?"
356356
case Nil => ""
357357
case _ => assert(
358358
false,

0 commit comments

Comments
 (0)