From fadfee78496c4e6d3b1403f1d6bca6e28127f1bc Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Wed, 11 Aug 2010 16:49:04 -0600 Subject: [PATCH] Normalizing docs a little --- collects/scribblings/reference/hashes.scrbl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/reference/hashes.scrbl b/collects/scribblings/reference/hashes.scrbl index 6342ababa9..21e2518c5e 100644 --- a/collects/scribblings/reference/hashes.scrbl +++ b/collects/scribblings/reference/hashes.scrbl @@ -308,19 +308,22 @@ new value. (listof any/c)]{ Returns a list of the keys of @scheme[hash] in an unspecified order. -@see-also-concurrency-caveat[]} +See @scheme[hash-map] for information about modifying @scheme[hash] +during @scheme[hash-domain]. @see-also-concurrency-caveat[]} @defproc[(hash-range [hash hash?]) (listof any/c)]{ Returns a list of the values of @scheme[hash] in an unspecified order. -@see-also-concurrency-caveat[]} +See @scheme[hash-map] for information about modifying @scheme[hash] +during @scheme[hash-range]. @see-also-concurrency-caveat[]} @defproc[(hash->list [hash hash?]) (listof (cons/c any/c any/c))]{ Returns a list of the key--value pairs of @scheme[hash] in an unspecified order. -@see-also-concurrency-caveat[]} +See @scheme[hash-map] for information about modifying @scheme[hash] +during @scheme[hash->list]. @see-also-concurrency-caveat[]} @defproc[(hash-for-each [hash hash?] [proc (any/c any/c . -> . any)])