aboutsummaryrefslogtreecommitdiff
path: root/theories/Numbers/NatInt/NZBase.v
diff options
context:
space:
mode:
authorletouzey2008-12-12 19:51:03 +0000
committerletouzey2008-12-12 19:51:03 +0000
commit98a86e50e7dc06b77a34bf34a0476aebc07efbcd (patch)
tree177e015614f9c5cf3cdf798920322bc888a082d2 /theories/Numbers/NatInt/NZBase.v
parenta19570bbbe7b42b491eae1cf33ff69a746584235 (diff)
Uniformity with the rest of the StdLib : _symm --> _sym
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11675 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Numbers/NatInt/NZBase.v')
-rw-r--r--theories/Numbers/NatInt/NZBase.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Numbers/NatInt/NZBase.v b/theories/Numbers/NatInt/NZBase.v
index 0b917e9983..985466979d 100644
--- a/theories/Numbers/NatInt/NZBase.v
+++ b/theories/Numbers/NatInt/NZBase.v
@@ -15,7 +15,7 @@ Require Import NZAxioms.
Module NZBasePropFunct (Import NZAxiomsMod : NZAxiomsSig).
Open Local Scope NatIntScope.
-Theorem NZneq_symm : forall n m : NZ, n ~= m -> m ~= n.
+Theorem NZneq_sym : forall n m : NZ, n ~= m -> m ~= n.
Proof.
intros n m H1 H2; symmetry in H2; false_hyp H2 H1.
Qed.