From 2606c59a292a7067347474e1a082708683b5c0e3 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 19 Aug 2011 15:58:05 -0600 Subject: [PATCH] fix `call-with-file-lock/timeout' example --- collects/scribblings/reference/filesystem.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/reference/filesystem.scrbl b/collects/scribblings/reference/filesystem.scrbl index 2f61b7c510..7c6923c6fe 100644 --- a/collects/scribblings/reference/filesystem.scrbl +++ b/collects/scribblings/reference/filesystem.scrbl @@ -1092,7 +1092,7 @@ in the sense of @racket[port-try-file-lock?]. (lambda () (printf "Shouldn't get here\n")) (lambda () (printf "Failed to obtain lock for file\n")))) (lambda () (printf "Shouldn't ger here eithere\n")) - #:get-lock-file (lambda () (make-lock-file-name filename)))] + #:lock-file (make-lock-file-name filename))] @defproc*[([(make-lock-file-name [path (or path-string? path-for-some-system?)])