aboutsummaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
authorherbelin2003-11-14 15:11:29 +0000
committerherbelin2003-11-14 15:11:29 +0000
commitcf8259ccd6383366bcb324d67e6df7d1c768cacc (patch)
treea8c39b0c176a1c405b31e9ef4367e1850b16e879 /theories
parent9772d55236a9d87218b4eb9e261e41cb3cf4c4af (diff)
Ordre standard pour l'associativite
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4908 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories')
-rw-r--r--theories/NArith/BinNat.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/NArith/BinNat.v b/theories/NArith/BinNat.v
index 084afccbc0..e11194a5d9 100644
--- a/theories/NArith/BinNat.v
+++ b/theories/NArith/BinNat.v
@@ -107,7 +107,7 @@ Rewrite add_sym; Reflexivity.
Qed.
Theorem Nplus_assoc :
- (n,m,p:entier)(Nplus (Nplus n m) p)=(Nplus n (Nplus m p)).
+ (n,m,p:entier)(Nplus n (Nplus m p))=(Nplus (Nplus n m) p).
Proof.
Intros.
NewDestruct n; Try Reflexivity.
@@ -163,7 +163,7 @@ Rewrite times_sym; Reflexivity.
Qed.
Theorem Nmult_assoc :
- (n,m,p:entier)(Nmult (Nmult n m) p)=(Nmult n (Nmult m p)).
+ (n,m,p:entier)(Nmult n (Nmult m p))=(Nmult (Nmult n m) p).
Proof.
Intros.
NewDestruct n; Try Reflexivity.