From 9741291fe9b6b96f41c284032ef6ac9a4750bc63 Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Mon, 2 Mar 2015 21:10:19 -0800 Subject: [PATCH] doc: fix child_process heading depth Addition of the Sync/Async headers didn't indent all the sub-headers. Reviewed-By: Colin Ihrig PR-URL: https://github.com/iojs/io.js/pull/1038 --- doc/api/child_process.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index 518d61c..1ca5cd7 100644 --- a/doc/api/child_process.markdown +++ b/doc/api/child_process.markdown @@ -439,7 +439,7 @@ Example of checking for failed exec: console.log('Failed to start child process.'); }); -### options.stdio +#### options.stdio As a shorthand, the `stdio` argument may be one of the following strings: @@ -492,7 +492,7 @@ Example: // startd-style interface. spawn('prg', [], { stdio: ['pipe', null, null, null, 'pipe'] }); -### options.detached +#### options.detached If the `detached` option is set, the child process will be made the leader of a new process group. This makes it possible for the child to continue running -- 2.7.4