doc: detached is a boolean

This commit is contained in:
Andreas Madsen 2012-06-25 18:53:35 +02:00 committed by Ben Noordhuis
parent 06c82c5069
commit 401ff10295

View File

@ -404,7 +404,7 @@ file:
err = fs.openSync('./out.log', 'a');
var child = spawn('prg', [], {
detached: 'true',
detached: true,
stdio: [ 'ignore', out, err ]
});