aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2000-11-11 13:09:42 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2000-11-11 13:09:42 +0000
commit4dafce245d8b392030f6e3b4628ac5dbfc432482 (patch)
tree5675624a5aed002cb0eb6e5029fdd98f5313f1d4 /theories
parent59d72fe6ec2b3b9260fc29343077f91280c7ae4b (diff)
Y avait des '.' non suivis d'un séparateur
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@847 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories')
-rw-r--r--theories/Zarith/auxiliary.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Zarith/auxiliary.v b/theories/Zarith/auxiliary.v
index de7ed41d3..dbefbc47c 100644
--- a/theories/Zarith/auxiliary.v
+++ b/theories/Zarith/auxiliary.v
@@ -129,9 +129,9 @@ Theorem dec_not_not : (P:Prop)(decidable P) -> (~P -> False) -> P.
Unfold decidable; Tauto. Save.
Theorem dec_True: (decidable True).
-Unfold decidable; Auto with arith.Save.
+Unfold decidable; Auto with arith. Save.
Theorem dec_False: (decidable False).
-Unfold decidable not; Auto with arith.Save.
+Unfold decidable not; Auto with arith. Save.
Theorem dec_or: (A,B:Prop)(decidable A) -> (decidable B) -> (decidable (A\/B)).
Unfold decidable; Tauto. Save.
Theorem dec_and: (A,B:Prop)(decidable A) -> (decidable B) ->(decidable (A/\B)).