Skip to content

Commit 02f7d1f

Browse files
authored
Merge pull request #34 from brunom/patch-1
Update class.v
2 parents 19dc0c1 + 26f6b7d commit 02f7d1f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ch5_everydays_logic/SRC/class.v

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ Qed.
2323
Lemma classic_excluded_middle: classic -> excluded_middle.
2424
Proof.
2525
unfold excluded_middle; intros H P.
26-
apply H; intro H0; absurd P.
27-
- intro H1; apply H0 ; now left.
28-
- apply H; intro H1; apply H0; now right.
26+
apply H; intro H0; apply H0; right.
27+
intro H1; apply H0 ; now left.
2928
Qed.
3029

3130

0 commit comments

Comments
 (0)