Skip to content

Commit 4290e61

Browse files
committed
Fix typo in exception message
1 parent 2b3007a commit 4290e61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/core/TypeErrors.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ object CyclicReference:
177177
def apply(denot: SymDenotation)(using Context): CyclicReference =
178178
val ex = new CyclicReference(denot)
179179
if ex.computeStackTrace then
180-
cyclicErrors.println(s"Cyclic reference involving! $denot")
180+
cyclicErrors.println(s"Cyclic reference involving $denot")
181181
val sts = ex.getStackTrace.asInstanceOf[Array[StackTraceElement]]
182182
for (elem <- sts take 200)
183183
cyclicErrors.println(elem.toString)

0 commit comments

Comments
 (0)