Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup: address review comment
  • Loading branch information
HarshithaKP committed Jan 14, 2020
commit a0b0d68faa3b90af62fe9ec127497cf4786dae52
8 changes: 4 additions & 4 deletions doc/api/child_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ When the child process is a Node.js instance (e.g. spawned using
[`child_process.fork()`][]), the `process.disconnect()` method can be invoked
within the child process to close the IPC channel as well.

###`subprocess.exitCode`
### `subprocess.exitCode`

* {integer}

Expand Down Expand Up @@ -1375,14 +1375,14 @@ It is also recommended that any `'message'` handlers in the child process
verify that `socket` exists, as the connection may have been closed during the
time it takes to send the connection to the child.

###`subprocess.signalCode`
### `subprocess.signalCode`

* {integer}

The `subprocess.signalCode` property indicates the signal number received by
the child process if any, else null.

###`subprocess.spawnfile`
### `subprocess.spawnfile`

* {string}

Expand All @@ -1396,7 +1396,7 @@ the executable file.
For [`child_process.exec()`][], its value will be the name of the shell
in which the child process is launched.

###`subprocess.spawnargs`
### `subprocess.spawnargs`
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

spawnargs should go before spawnfile rather than after it.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Trott, thanks. Placed it in right place.


* {Array}

Expand Down