fix(comment): fix typo in Launcher.js (#4959)

This commit is contained in:
2kindsofcs 2019-10-10 19:54:14 +09:00 committed by Mathias Bynens
parent 7dbb10859c
commit 4c62e09a76

View File

@ -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',