From 324743b1c0213edfda7ea012d1afc975f133aaf4 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 29 Jul 2009 19:18:57 +0000 Subject: [PATCH] refine regexp-split contract svn: r15625 --- collects/scribblings/reference/regexps.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/reference/regexps.scrbl b/collects/scribblings/reference/regexps.scrbl index 75146a9764..3c2441c500 100644 --- a/collects/scribblings/reference/regexps.scrbl +++ b/collects/scribblings/reference/regexps.scrbl @@ -524,7 +524,7 @@ Like @scheme[regexp-match-peek-positions], but returns multiple matches like [input (or/c string? bytes? input-port?)] [start-pos exact-nonnegative-integer? 0] [end-pos (or/c exact-nonnegative-integer? #f) #f]) - (listof (or/c string? bytes?))]{ + (cons/c (or/c string? bytes?) (listof (or/c string? bytes?)))]{ The complement of @scheme[regexp-match*]: the result is a list of strings (if @scheme[pattern] is a string or character regexp and