Skip to content

Commit 843c5c6

Browse files
cjihrigcodebytere
authored andcommitted
doc: fix several child_process doc typos
PR-URL: #31393 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Anto Aravinth <[email protected]>
1 parent b8face2 commit 843c5c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/api/child_process.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ added: v0.1.90
983983
The `'exit'` event is emitted after the child process ends. If the process
984984
exited, `code` is the final exit code of the process, otherwise `null`. If the
985985
process terminated due to receipt of a signal, `signal` is the string name of
986-
the signal, otherwise `null`. One of the two will always be non-null.
986+
the signal, otherwise `null`. One of the two will always be non-`null`.
987987

988988
When the `'exit'` event is triggered, child process stdio streams might still be
989989
open.
@@ -1059,8 +1059,8 @@ within the child process to close the IPC channel as well.
10591059

10601060
* {integer}
10611061

1062-
The `subprocess.exitcode` property indicates the exit code of the child process.
1063-
If the child process is still running, the field will be null.
1062+
The `subprocess.exitCode` property indicates the exit code of the child process.
1063+
If the child process is still running, the field will be `null`.
10641064

10651065
### `subprocess.kill([signal])`
10661066
<!-- YAML
@@ -1360,7 +1360,7 @@ time it takes to send the connection to the child.
13601360
* {integer}
13611361

13621362
The `subprocess.signalCode` property indicates the signal number received by
1363-
the child process if any, else null.
1363+
the child process if any, else `null`.
13641364

13651365
### `subprocess.spawnargs`
13661366

0 commit comments

Comments
 (0)