summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGxyz <18710890823@163.com>2019-04-07 11:55:44 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-04-07 06:55:44 +0300
commit3324afbd404a4237f0339e50a345a5f20c4ea7dd (patch)
tree7bf61dd9d7d1de0174ba3a254bf6ba138ea87111
parent780e72ab6a092a6a7174c30bf4163857770d2ad0 (diff)
Fix typo in manual.md (#2066)
-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