From e64f8be932eb91258310695592107c2e0674172e Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Mon, 22 Nov 2010 17:42:15 -0500 Subject: [PATCH] Fix open-input-output-file doc. Closes PR 11371. --- collects/scribblings/reference/file-ports.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/reference/file-ports.scrbl b/collects/scribblings/reference/file-ports.scrbl index eec76b0c28..c1d8c47996 100644 --- a/collects/scribblings/reference/file-ports.scrbl +++ b/collects/scribblings/reference/file-ports.scrbl @@ -192,7 +192,7 @@ A @tech{path} value that is the @tech{cleanse}d version of @defproc[(open-input-output-file [path path-string?] [#:mode mode-flag (or/c 'binary 'text) 'binary] - [#:exists exists-flag (or/c 'error 'append 'update + [#:exists exists-flag (or/c 'error 'append 'update 'can-update 'replace 'truncate 'truncate/replace) 'error]) (values input-port? output-port?)]{