Skip to content

Commit 8b39e0d

Browse files
committed
fix
1 parent 53caaa1 commit 8b39e0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Lean/Elab/Tactic/ElabTerm.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,11 +551,11 @@ where
551551
return (reason, unfoldedInsts)
552552
let stuckMsg :=
553553
if unfoldedInsts.isEmpty then
554-
m!"Reduction got stuck at the `{.ofConstName ``Decidable}` instance{indentExpr reason}"
554+
m!"Reduction got stuck{indentExpr reason}"
555555
else
556556
let instances := if unfoldedInsts.size == 1 then "instance" else "instances"
557557
m!"After unfolding the {instances} {.andList unfoldedInsts.toList}, \
558-
reduction got stuck at the `{.ofConstName ``Decidable}` instance{indentExpr reason}"
558+
reduction got stuck at{indentExpr reason}"
559559
let hint :=
560560
if reason.isAppOf ``Eq.rec then
561561
.hint' m!"Reduction got stuck on `▸` ({.ofConstName ``Eq.rec}), \

0 commit comments

Comments
 (0)