Skip to content

Commit

Permalink
fix docstring of open(command) (close JuliaLang#24649)
Browse files Browse the repository at this point in the history
  • Loading branch information
bicycle1885 committed Aug 31, 2018
1 parent 804d12e commit 2175ef9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions base/process.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down

0 comments on commit 2175ef9

Please sign in to comment.