From 171608a1a2fc12753670015fcc1e4b2110f92097 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 11 Oct 2020 13:37:53 -0600 Subject: [PATCH] docs: fix typo --- pkgs/racket-doc/scribblings/reference/hashes.scrbl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/hashes.scrbl b/pkgs/racket-doc/scribblings/reference/hashes.scrbl index 5e691f94fa..998b58877e 100644 --- a/pkgs/racket-doc/scribblings/reference/hashes.scrbl +++ b/pkgs/racket-doc/scribblings/reference/hashes.scrbl @@ -766,7 +766,7 @@ h [#:combine/key combine/key (-> any/c any/c any/c any/c) (lambda (k a b) (combine a b))]) - (and/c hash? immutable?)] { + (and/c hash? immutable?)]{ Constructs the hash table which is the intersection of @racket[h0] with every hash table @racket[h]. In the resulting hash table, a key @@ -791,8 +791,7 @@ The comparison predicate of the first argument (@racket[eq?], (lambda (k v1 v2) (if (eq? k 'a) (+ v1 v2) (- v1 v2)))) ] -} + +@history[#:added "7.8.0.11"]} @(close-eval the-eval) - -@history[#:added "7.8.0.11"]