Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPooja D.P <Pooja.D.P@ibm.com>2020-10-06 15:26:11 +0300
committerGireesh Punathil <gpunathi@in.ibm.com>2020-10-24 10:32:37 +0300
commitab62fc1dd8c7f25aef8ae0a59d2de9e0da8d7008 (patch)
treead395f40d93ebd99b31e50b8803bc1c19b764107
parent4d5444981afa7b8579a557be0bf85a79a21a37d5 (diff)
doc: this prints replaced with this is printed
PR-URL: https://github.com/nodejs/node/pull/35515 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
-rw-r--r--doc/api/vm.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/vm.md b/doc/api/vm.md
index 15914d00d4a..437a5e0177d 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -1271,7 +1271,7 @@ vm.runInNewContext(
{ loop, console },
{ timeout: 5 }
);
-// This prints *before* 'entering loop' (!)
+// This is printed *before* 'entering loop' (!)
console.log('done executing');
```