aboutsummaryrefslogtreecommitdiff
path: root/theories/Zarith/auxiliary.v
diff options
context:
space:
mode:
authorfilliatr2000-03-30 18:26:15 +0000
committerfilliatr2000-03-30 18:26:15 +0000
commite65106b4799afd27eb1aecf6d2d42b098fe7ec89 (patch)
treedf705534c7a128463de07a79522895075e6a946f /theories/Zarith/auxiliary.v
parenta345bf314e82b7cf33eb31034b04310b98bd915b (diff)
erreurs lexicales dans les patterns (manquait des espaces)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@359 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Zarith/auxiliary.v')
-rw-r--r--theories/Zarith/auxiliary.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Zarith/auxiliary.v b/theories/Zarith/auxiliary.v
index 647f027c0c..bee3e0a234 100644
--- a/theories/Zarith/auxiliary.v
+++ b/theories/Zarith/auxiliary.v
@@ -203,7 +203,7 @@ Theorem dec_ge:(x,y:nat)(decidable (ge x y)).
Intros x y; Unfold ge; Apply dec_le.
Save.
-Theorem not_not : (P:Prop)(decidable P) -> (~~P) -> P.
+Theorem not_not : (P:Prop)(decidable P) -> (~(~P)) -> P.
Unfold decidable; Tauto. Save.
Theorem not_or : (A,B:Prop) ~(A\/B) -> ~A /\ ~B.