aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
diff options
context:
space:
mode:
Diffstat (limited to 'coq/example.v')
-rw-r--r--coq/example.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/coq/example.v b/coq/example.v
index 6e88c5c8..95a9adac 100644
--- a/coq/example.v
+++ b/coq/example.v
@@ -5,9 +5,9 @@
*)
Goal forall (A B:Prop),(A /\ B) -> (B /\ A).
- intros A B H.
+ intros A B.
+ intros H.
elim H.
- intros.
split.
assumption.
assumption.