From ce79106c5b4b8b2fba56c83e8ed728263dc7867b Mon Sep 17 00:00:00 2001 From: ronijames008 <48819590+ronijames008@users.noreply.github.com> Date: Fri, 27 Jun 2025 20:43:49 +0530 Subject: [PATCH] doc: add missing comma in `child_process.md` Adds a comma after "blocks" in a sentence explaining how subprocesses may pause when the pipe buffer is full. This improves readability and clarifies the meaning of the sentence, preventing misinterpretation of "blocks waiting" as a compound phrase. No functional code is affected. --- 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 f340d5f912178f..efbb4652a34ea2 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -48,7 +48,7 @@ By default, pipes for `stdin`, `stdout`, and `stderr` are established between the parent Node.js process and the spawned subprocess. These pipes have limited (and platform-specific) capacity. If the subprocess writes to stdout in excess of that limit without the output being captured, the -subprocess blocks waiting for the pipe buffer to accept more data. This is +subprocess blocks, waiting for the pipe buffer to accept more data. This is identical to the behavior of pipes in the shell. Use the `{ stdio: 'ignore' }` option if the output will not be consumed.