From 47091d4dc8a510d0f618e4675862ae9490b05239 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Tue, 7 Aug 2018 01:46:37 +0200 Subject: [PATCH] src: fix up doc comment for experimental-worker bool --- src/node_internals.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node_internals.h b/src/node_internals.h index a27e5f3567b673..0594d00580a779 100644 --- a/src/node_internals.h +++ b/src/node_internals.h @@ -195,9 +195,9 @@ extern bool config_experimental_modules; // that is used by lib/vm.js extern bool config_experimental_vm_modules; -// Set in node.cc by ParseArgs when --experimental-vm-modules is used. +// Set in node.cc by ParseArgs when --experimental-worker is used. // Used in node_config.cc to set a constant on process.binding('config') -// that is used by lib/vm.js +// that is used by the module loader. extern bool config_experimental_worker; // Set in node.cc by ParseArgs when --experimental-repl-await is used.