Skip to content

Commit

Permalink
fix: update statement on communicating with subprocesses (denoland#1051)
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvesteraryee authored Oct 21, 2024
1 parent 8bcdb0d commit cff7ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/tutorials/subprocess.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ permissions as if you were to run the command from the command line yourself.
## Communicating with subprocesses

By default when you use `Deno.Command()` the subprocess inherits `stdin`,
`stdout` and `stderr` of the parent process. If you want to communicate with
started a subprocess you must use the `"piped"` option.
`stdout` and `stderr` of the parent process. If you want to communicate with a
started subprocess you must use the `"piped"` option.

## Piping to files

Expand Down

0 comments on commit cff7ecb

Please sign in to comment.