Skip to content

Commit 169fa69

Browse files
committed
Fix broken set membership proof
1 parent c842c7d commit 169fa69

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Mathlib/Computability/EpsilonNFA.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -592,10 +592,10 @@ theorem mem_matches'_directRegex {i j : Fin n} {x : List α} :
592592
contradiction
593593
· rintro (⟨a, rfl, h_step⟩ | ⟨rfl, h_step⟩)
594594
· left
595-
use { [a] }
596-
simp only [mem_range, mem_singleton_iff, and_true]
595+
apply Set.mem_iUnion.mpr
597596
use a
598597
simp [h_step]
598+
rfl
599599
· right
600600
simp [h_step]
601601

0 commit comments

Comments
 (0)