From fe8531c00f317b2414886c76d1372b1b018fbff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 11 Jan 2025 22:17:21 +0100 Subject: [PATCH] doc: fix parentheses in options --- doc/api/child_process.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 7a9345416e0545..0a9c0e3e326cc3 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -536,7 +536,7 @@ changes: * `options` {Object} * `cwd` {string|URL} Current working directory of the child process. * `detached` {boolean} Prepare child process to run independently of its - parent process. Specific behavior depends on the platform, see + parent process. Specific behavior depends on the platform (see [`options.detached`][]). * `env` {Object} Environment key-value pairs. **Default:** `process.env`. * `execPath` {string} Executable used to create the child process. @@ -688,7 +688,7 @@ changes: * `stdio` {Array|string} Child's stdio configuration (see [`options.stdio`][`stdio`]). * `detached` {boolean} Prepare child process to run independently of - its parent process. Specific behavior depends on the platform, see + its parent process. Specific behavior depends on the platform (see [`options.detached`][]). * `uid` {number} Sets the user identity of the process (see setuid(2)). * `gid` {number} Sets the group identity of the process (see setgid(2)).