From 4c62e09a766593c7902a7068896caa6b690b55ba Mon Sep 17 00:00:00 2001 From: 2kindsofcs <42531877+2kindsofcs@users.noreply.github.com> Date: Thu, 10 Oct 2019 19:54:14 +0900 Subject: [PATCH] fix(comment): fix typo in Launcher.js (#4959) --- lib/Launcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Launcher.js b/lib/Launcher.js index c5060f7a..41dc1e5d 100644 --- a/lib/Launcher.js +++ b/lib/Launcher.js @@ -133,7 +133,7 @@ class Launcher { chromeExecutable, chromeArguments, { - // On non-windows platforms, `detached: false` makes child process a leader of a new + // On non-windows platforms, `detached: true` makes child process a leader of a new // process group, making it possible to kill child process tree with `.kill(-pid)` command. // @see https://nodejs.org/api/child_process.html#child_process_options_detached detached: process.platform !== 'win32',