From 1e1426a5700ed78c50a45363f49ae65c34faa001 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 7 Dec 2017 15:12:25 -0700 Subject: [PATCH] Revert "doc correction for `will-execute`" This reverts commit 52e7267273ad5bd66225cbabb9c8b3321d029b18. The change was for `will-try-execute`. And while the change is a good idea, `will-try-execute` doesn't acually accept the extra argument. --- pkgs/racket-doc/scribblings/reference/memory.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/memory.scrbl b/pkgs/racket-doc/scribblings/reference/memory.scrbl index b089505349..091dd64fdd 100644 --- a/pkgs/racket-doc/scribblings/reference/memory.scrbl +++ b/pkgs/racket-doc/scribblings/reference/memory.scrbl @@ -190,10 +190,10 @@ call. If no will is ready for immediate execution, @racket[will-execute] blocks until one is ready.} -@defproc[(will-try-execute [executor any/c] [v any/c #f]) any]{ +@defproc[(will-try-execute [executor any/c]) any]{ Like @racket[will-execute] if a will is ready for immediate -execution. Otherwise, @racket[v] is returned.} +execution. Otherwise, @racket[#f] is returned.} @;------------------------------------------------------------------------ @section[#:tag "garbagecollection"]{Garbage Collection}