doc: fix detached child stdio example

The example changed by this commit uses ['ignore'] where
'ignore' is intended.

Fixes: https://github.com/nodejs/node/issues/7269
PR-URL: https://github.com/nodejs/node/pull/7540
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
cjihrig 2016-07-05 11:27:15 -04:00
Родитель 630096bc80
Коммит 5a571a5fa0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -430,7 +430,7 @@ const spawn = require('child_process').spawn;
const child = spawn(process.argv[0], ['child_program.js'], {
detached: true,
stdio: ['ignore']
stdio: 'ignore'
});
child.unref();