summaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorChristian Bromann <github@christian-bromann.com>2019-12-18 15:44:30 +0100
committerRy Dahl <ry@tinyclouds.org>2019-12-18 09:44:30 -0500
commit1c09cc63c8b9c33842ee302c93aebc6593be8b15 (patch)
treeec334150f0537f25367e514f97ba134c447156d3 /std
parent077b6f7672b0d92edc9488622790d78fd8ab20c4 (diff)
fix code example (#3519)
Diffstat (limited to 'std')
-rw-r--r--std/manual.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/manual.md b/std/manual.md
index 4af56d7c3..ca4a269f6 100644
--- a/std/manual.md
+++ b/std/manual.md
@@ -1087,7 +1087,7 @@ console.log(resources());
// { 0: "stdin", 1: "stdout", 2: "stderr" }
close(0);
console.log(resources());
-// { "stdout", 2: "stderr" }
+// { 1: "stdout", 2: "stderr" }
```
#### Metrics