aboutsummaryrefslogtreecommitdiff
path: root/src/Util/ListUtil.v
diff options
context:
space:
mode:
authorGravatar Jade Philipoom <jadep@google.com>2018-03-27 11:22:03 +0200
committerGravatar jadephilipoom <jade.philipoom@gmail.com>2018-04-03 09:00:55 -0400
commit5901c9fa39702c8e08217fa470ead9dba7264274 (patch)
treef47e612594e54d3ba0291e68200c0f65b26850f6 /src/Util/ListUtil.v
parent1d9f510e4e99469dc78f50d116be198677c1cf7f (diff)
pass-through after Andres's review in #334
Diffstat (limited to 'src/Util/ListUtil.v')
-rw-r--r--src/Util/ListUtil.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Util/ListUtil.v b/src/Util/ListUtil.v
index e162c2daf..2aab77aca 100644
--- a/src/Util/ListUtil.v
+++ b/src/Util/ListUtil.v
@@ -1879,7 +1879,7 @@ Ltac expand_lists _ :=
end;
subst v; reflexivity ].
-Lemma list_rect_to_match A (P:list A -> Type) (Pnil: P nil) (PS: forall a tl, P (a :: tl)) ls :
+Lemma single_list_rect_to_match A (P:list A -> Type) (Pnil: P nil) (PS: forall a tl, P (a :: tl)) ls :
@list_rect A P Pnil (fun a tl _ => PS a tl) ls = match ls with
| cons a tl => PS a tl
| nil => Pnil