From e1c8afb0a9c85f65e719b5cd258c930591890100 Mon Sep 17 00:00:00 2001 From: Sebastian Van Sande Date: Wed, 22 Feb 2017 10:47:57 +0100 Subject: [PATCH] doc: link to readable and writeable stream section Modify the `[Writable]` and `[Readable]` links so they point directly to the right sections in the stream.html doc PR-URL: https://github.com/nodejs/node/pull/11517 Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Timothy Gu Reviewed-By: Luigi Pinca --- doc/api/process.md | 4 ++-- doc/api/readline.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index 76e959136b7162..3478f556a50735 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1789,8 +1789,8 @@ cases: [Signal Events]: #process_signal_events [Stream compatibility]: stream.html#stream_compatibility_with_older_node_js_versions [TTY]: tty.html#tty_tty -[Writable]: stream.html -[Readable]: stream.html +[Writable]: stream.html#stream_writable_streams +[Readable]: stream.html#stream_readable_streams [Child Process]: child_process.html [Cluster]: cluster.html [`process.exitCode`]: #process_process_exitcode diff --git a/doc/api/readline.md b/doc/api/readline.md index b3be83bb6eb8c4..10164bc7887984 100644 --- a/doc/api/readline.md +++ b/doc/api/readline.md @@ -525,8 +525,8 @@ rl.on('line', (line) => { [`process.stdin`]: process.html#process_process_stdin [`process.stdout`]: process.html#process_process_stdout -[Writable]: stream.html -[Readable]: stream.html +[Writable]: stream.html#stream_writable_streams +[Readable]: stream.html#stream_readable_streams [TTY]: tty.html [`SIGTSTP`]: readline.html#readline_event_sigtstp [`SIGCONT`]: readline.html#readline_event_sigcont