From 1c09cc63c8b9c33842ee302c93aebc6593be8b15 Mon Sep 17 00:00:00 2001 From: Christian Bromann Date: Wed, 18 Dec 2019 15:44:30 +0100 Subject: [PATCH] fix code example (#3519) --- std/manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/manual.md b/std/manual.md index 4af56d7c31..ca4a269f65 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