aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/NArith
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-12-17 21:00:26 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-12-17 21:00:26 +0000
commite1cad068ffc188d06c37f46e1bf6e7b57e02e219 (patch)
tree7d9f6b7051b21d3fd1fde1a257bdf1562b15729f /theories/NArith
parentb1040ad095410fe925b0a3aaf9399776279486f0 (diff)
Cosmetic : let's take advantage of the n-ary exists notation
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13721 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/NArith')
-rw-r--r--theories/NArith/Ndigits.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/NArith/Ndigits.v b/theories/NArith/Ndigits.v
index 5b3157143..a5d6b6730 100644
--- a/theories/NArith/Ndigits.v
+++ b/theories/NArith/Ndigits.v
@@ -208,7 +208,7 @@ Proof.
Qed.
Lemma Ntestbit_spec : forall a n,
- exists l, exists h, 0<=l<2^n /\
+ exists l h, 0<=l<2^n /\
a = l + ((if Ntestbit a n then 1 else 0) + 2*h)*2^n.
Proof.
intros [|a] n.