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 4fb38af6..1155e5f7 100644
--- a/coq/example.v
+++ b/coq/example.v
@@ -4,7 +4,8 @@
$Id$
*)
-Goal (A,B:Prop)(and A B) -> (and B A).
+
+Goal (A,B:Prop)(A /\ B) -> (B /\ A).
Intros A B H.
Induction H.
Apply conj.
@@ -12,4 +13,3 @@ Assumption.
Assumption.
Save and_comms.
-