Normalizing docs a little

This commit is contained in:
Jay McCarthy 2010-08-11 16:49:04 -06:00
parent 58ad011ce9
commit fadfee7849

View File

@ -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)])