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:
-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');
```