From c0d97561633417616617af7b9f2aca1f337261a1 Mon Sep 17 00:00:00 2001 From: "Pooja D.P" Date: Tue, 6 Oct 2020 16:26:11 +0400 Subject: [PATCH] doc: this prints replaced with this is printed PR-URL: https://github.com/nodejs/node/pull/35515 Reviewed-By: Anna Henningsen Reviewed-By: Christian Clauss Reviewed-By: Gireesh Punathil --- doc/api/vm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/vm.md b/doc/api/vm.md index 78ef3a032c4996..a350dff96f59b3 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -1269,7 +1269,7 @@ vm.runInNewContext( { loop, console }, { timeout: 5 } ); -// This prints *before* 'entering loop' (!) +// This is printed *before* 'entering loop' (!) console.log('done executing'); ```