From ee72e0ea975a78d6fbc37608037ecb65d249d0bc Mon Sep 17 00:00:00 2001 From: Asumu Takikawa Date: Mon, 11 Nov 2013 18:58:18 -0500 Subject: [PATCH] Fix documented arity of -id-table-remove --- .../racket-doc/syntax/scribblings/id-table.scrbl | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/racket-pkgs/racket-doc/syntax/scribblings/id-table.scrbl b/pkgs/racket-pkgs/racket-doc/syntax/scribblings/id-table.scrbl index 7576c7d9b5..462e838f1a 100644 --- a/pkgs/racket-pkgs/racket-doc/syntax/scribblings/id-table.scrbl +++ b/pkgs/racket-pkgs/racket-doc/syntax/scribblings/id-table.scrbl @@ -102,8 +102,7 @@ Like @racket[hash-remove!]. } @defproc[(free-id-table-remove [table immutable-free-id-table?] - [id identifier?] - [v any/c]) + [id identifier?]) immutable-free-id-table?]{ Like @racket[hash-remove]. @@ -200,11 +199,10 @@ etc) can be used on bound-identifier tables. [v any/c]) immutable-bound-id-table?] @defproc[(bound-id-table-remove! [table mutable-bound-id-table?] - [id identifier?]) + [id identifier?]) void?] @defproc[(bound-id-table-remove [table immutable-bound-id-table?] - [id identifier?] - [v any/c]) + [id identifier?]) immutable-bound-id-table?] @defproc[(bound-id-table-map [table bound-id-table?] [proc (-> identifier? any/c any)])