Skip to content

Commit ccdc194

Browse files
vsemozhetbytMylesBorins
authored andcommitted
doc: fix some internal links
PR-URL: #15293 Reviewed-By: Claudio Rodriguez <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 514ef74 commit ccdc194

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

doc/api/cluster.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -838,8 +838,8 @@ socket.on('data', (id) => {
838838
```
839839

840840
[`child_process.fork()`]: child_process.html#child_process_child_process_fork_modulepath_args_options
841-
[`ChildProcess.send()`]: child_process.html#child_process_child_send_message_sendhandle_options_callback
842-
[`disconnect`]: child_process.html#child_process_child_disconnect
841+
[`ChildProcess.send()`]: child_process.html#child_process_subprocess_send_message_sendhandle_options_callback
842+
[`disconnect`]: child_process.html#child_process_subprocess_disconnect
843843
[`kill`]: process.html#process_process_kill_pid_signal
844844
[`server.close()`]: net.html#net_event_close
845845
[`worker.exitedAfterDisconnect`]: #cluster_worker_exitedafterdisconnect

doc/api/process.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ It is important to take note of the following:
430430
called asynchronously and therefore unable to correct the underlying problem.
431431

432432
*Note*: Windows does not support sending signals, but Node.js offers some
433-
emulation with [`process.kill()`][], and [`ChildProcess.kill()`][]. Sending
433+
emulation with [`process.kill()`][], and [`subprocess.kill()`][]. Sending
434434
signal `0` can be used to test for the existence of a process. Sending `SIGINT`,
435435
`SIGTERM`, and `SIGKILL` cause the unconditional termination of the target
436436
process.
@@ -1779,9 +1779,9 @@ cases:
17791779
[`'message'`]: child_process.html#child_process_event_message
17801780
[`'rejectionHandled'`]: #process_event_rejectionhandled
17811781
[`'uncaughtException'`]: #process_event_uncaughtexception
1782-
[`ChildProcess.disconnect()`]: child_process.html#child_process_child_disconnect
1783-
[`ChildProcess.kill()`]: child_process.html#child_process_child_kill_signal
1784-
[`ChildProcess.send()`]: child_process.html#child_process_child_send_message_sendhandle_options_callback
1782+
[`ChildProcess.disconnect()`]: child_process.html#child_process_subprocess_disconnect
1783+
[`subprocess.kill()`]: child_process.html#child_process_subprocess_kill_signal
1784+
[`ChildProcess.send()`]: child_process.html#child_process_subprocess_send_message_sendhandle_options_callback
17851785
[`ChildProcess`]: child_process.html#child_process_class_childprocess
17861786
[`end()`]: stream.html#stream_writable_end_chunk_encoding_callback
17871787
[`Error`]: errors.html#errors_class_error

doc/api/stream.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2064,8 +2064,8 @@ contain multi-byte characters.
20642064
[`writable.uncork()`]: #stream_writable_uncork
20652065
[API for Stream Consumers]: #stream_api_for_stream_consumers
20662066
[API for Stream Implementers]: #stream_api_for_stream_implementers
2067-
[child process stdin]: child_process.html#child_process_child_stdin
2068-
[child process stdout and stderr]: child_process.html#child_process_child_stdout
2067+
[child process stdin]: child_process.html#child_process_subprocess_stdin
2068+
[child process stdout and stderr]: child_process.html#child_process_subprocess_stdout
20692069
[Compatibility]: #stream_compatibility_with_older_node_js_versions
20702070
[crypto]: crypto.html
20712071
[Duplex]: #stream_class_stream_duplex
@@ -2080,7 +2080,7 @@ contain multi-byte characters.
20802080
[http-incoming-message]: http.html#http_class_http_incomingmessage
20812081
[Readable]: #stream_class_stream_readable
20822082
[zlib]: zlib.html
2083-
[hwm-gotcha]: #stream_highWaterMark_discrepency_after_calling_readable_setencoding
2083+
[hwm-gotcha]: #stream_highwatermark_discrepency_after_calling_readable_setencoding
20842084
[Readable]: #stream_class_stream_readable
20852085
[stream-_flush]: #stream_transform_flush_callback
20862086
[stream-_read]: #stream_readable_read_size_1

0 commit comments

Comments
 (0)