Skip to content

Commit 9fa8b4d

Browse files
committed
Fix broken proof because of d6d78d9
Because `open_neighborhood` gets unfolded by `intuition`, the proof ends earlier than the proof-script anticipated. This error was caused because I didn't check whether the repo still compiles…
1 parent d6d78d9 commit 9fa8b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

theories/Topology/Neighborhoods.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Lemma open_char_neighborhood: forall {X:TopologicalSpace} (U : Ensemble X),
5050
Proof.
5151
split.
5252
- intros.
53-
exists U. intuition. red. intuition.
53+
exists U. intuition.
5454
- intros.
5555
assert (U = FamilyUnion (fun V => open V /\ Included V U)).
5656
2: {

0 commit comments

Comments
 (0)