From 2175ef924e2dc7d5d2efb64db268605f99dbf9d1 Mon Sep 17 00:00:00 2001 From: Kenta Sato Date: Mon, 15 Jan 2018 12:28:30 +0900 Subject: [PATCH] fix docstring of open(command) (close #24649) --- base/process.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base/process.jl b/base/process.jl index ef690c454d263..8427036f10e3f 100644 --- a/base/process.jl +++ b/base/process.jl @@ -574,9 +574,9 @@ end """ open(command, stdio=devnull; write::Bool = false, read::Bool = !write) -Start running `command` asynchronously, and return a tuple `(stream,process)`. If `read` is -true, then `stream` reads from the process's standard output and `stdio` optionally -specifies the process's standard input stream. If `write` is true, then `stream` writes to +Start running `command` asynchronously, and return a `process` object. If `read` is +true, then `process` reads from the process's standard output and `stdio` optionally +specifies the process's standard input stream. If `write` is true, then `process` writes to the process's standard input and `stdio` optionally specifies the process's standard output stream. """