Skip to content

Commit bab36c3

Browse files
authored
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. PR-URL: #58862 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent ebe7dad commit bab36c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/child_process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ By default, pipes for `stdin`, `stdout`, and `stderr` are established between
4848
the parent Node.js process and the spawned subprocess. These pipes have
4949
limited (and platform-specific) capacity. If the subprocess writes to
5050
stdout in excess of that limit without the output being captured, the
51-
subprocess blocks waiting for the pipe buffer to accept more data. This is
51+
subprocess blocks, waiting for the pipe buffer to accept more data. This is
5252
identical to the behavior of pipes in the shell. Use the `{ stdio: 'ignore' }`
5353
option if the output will not be consumed.
5454

0 commit comments

Comments
 (0)