From 76484e9ead91201331ccc0c62ff97dfc0beb9493 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 3 May 2011 14:38:03 -0600 Subject: [PATCH] fix docs Closes PR 11888 --- collects/scribblings/reference/subprocess.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/reference/subprocess.scrbl b/collects/scribblings/reference/subprocess.scrbl index d00caebb8e..f73eb12dc2 100644 --- a/collects/scribblings/reference/subprocess.scrbl +++ b/collects/scribblings/reference/subprocess.scrbl @@ -344,7 +344,7 @@ Under Windows, the first argument after @racket[command] can be line. See @racket[subprocess] for details.} -@defproc[(system/exit-code [command string?]) (integer-in 0 255)]{ +@defproc[(system/exit-code [command (or/c string? bytes?)]) (integer-in 0 255)]{ Like @racket[system], except that the result is the exit code returned by the subprocess. A @racket[0] result normally indicates success.}