aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Bool
diff options
context:
space:
mode:
authorGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-09-28 16:27:26 +0000
committerGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-09-28 16:27:26 +0000
commite09064ff153ee9f909e8c2c1ee2aaa249b324a78 (patch)
tree00168e2de1b8f2ec98ed80829653861a832b529a /theories/Bool
parent8b78dec71c7922ab335a554d28b320423efbb9d3 (diff)
Bvector.Vshiftin was wrong for ages
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13471 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Bool')
-rw-r--r--theories/Bool/Bvector.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Bool/Bvector.v b/theories/Bool/Bvector.v
index 0cb3c3670..88bc15c69 100644
--- a/theories/Bool/Bvector.v
+++ b/theories/Bool/Bvector.v
@@ -92,7 +92,7 @@ Proof.
exact (Vcons a 0 v).
inversion v as [| a0 n0 H0 H1 ].
- exact (Vcons a (S n) (f a H0)).
+ exact (Vcons a0 (S n) (f a H0)).
Defined.
Lemma Vshiftrepeat : forall n:nat, vector (S n) -> vector (S (S n)).