From 65ce019fbc58820d2041d3f497c6e472bec26063 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 28 Jul 2008 20:28:20 +0000 Subject: [PATCH] refine map docs to clarify that the results are in order svn: r10948 --- collects/scribblings/reference/pairs.scrbl | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/collects/scribblings/reference/pairs.scrbl b/collects/scribblings/reference/pairs.scrbl index 8cca3e01f1..bfa8143e4a 100644 --- a/collects/scribblings/reference/pairs.scrbl +++ b/collects/scribblings/reference/pairs.scrbl @@ -168,12 +168,10 @@ reverse order.} list?]{ Applies @scheme[proc] to the elements of the @scheme[lst]s from the - first elements to the last. The @scheme[proc] argument must - accept the same number of arguments as the number of supplied - @scheme[lst]s, and all @scheme[lst]s must have the same number of - elements. The result is a list containing each result of - @scheme[proc].} - + first elements to the last. The @scheme[proc] argument must accept + the same number of arguments as the number of supplied @scheme[lst]s, + and all @scheme[lst]s must have the same number of elements. The + result is a list containing each result of @scheme[proc] in order.} @defproc[(andmap [proc procedure?] [lst list?] ...+) any]{