summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--website/manual.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/manual.md b/website/manual.md
index c9609741c..4a54ea8e2 100644
--- a/website/manual.md
+++ b/website/manual.md
@@ -384,7 +384,7 @@ hello
```
By default when you use `Deno.run()` subprocess inherits `stdin`, `stdout` and
-`stdout` of parent process. If you want to communicate with started subprocess
+`stderr` of parent process. If you want to communicate with started subprocess
you can use `"piped"` option.
```ts