aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-10-29 11:19:28 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-10-29 11:19:28 +0000
commitac27db8a4cdcc8f897e9580a832e0f3eb331cf6c (patch)
treec77083c17c8f0dd6bfb150a964f78fa32d035f53 /lib
parent815d4dc9ccc2938859c22b5848d153c50fee0192 (diff)
Revision 12439 continued, printing part (notations to names behave
like the name they refer to). Fixing buggy test-suite implicit.v git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12442 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib')
-rw-r--r--lib/util.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.ml b/lib/util.ml
index 794f1a6ac..d71912289 100644
--- a/lib/util.ml
+++ b/lib/util.ml
@@ -850,7 +850,7 @@ let list_lastn n l =
let rec list_skipn n l = match n,l with
| 0, _ -> l
- | _, [] -> failwith "list_fromn"
+ | _, [] -> failwith "list_skipn"
| n, _::l -> list_skipn (pred n) l
let rec list_addn n x l =