From fefd2af285067750855b6bd1151fa72c4d436fdd Mon Sep 17 00:00:00 2001 From: Joseph Joy Date: Sun, 7 Jan 2024 15:11:43 +0530 Subject: [PATCH] doc: add missing word in `child_process.md` PR-URL: https://github.com/nodejs/node/pull/50370 Reviewed-By: Luigi Pinca Reviewed-By: Matteo Collina Reviewed-By: Zeyu "Alex" Yang --- doc/api/child_process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 58fbed1c0daf8e..5d7842a0730138 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -842,7 +842,7 @@ pipes between the parent and child. The value is one of the following: file, socket, or a pipe with the child process. The stream's underlying file descriptor is duplicated in the child process to the fd that corresponds to the index in the `stdio` array. The stream must have an - underlying descriptor (file streams do not until the `'open'` event has + underlying descriptor (file streams do not start until the `'open'` event has occurred). 7. Positive integer: The integer value is interpreted as a file descriptor that is open in the parent process. It is shared with the child