Skip to content

Commit 4f38d45

Browse files
ChALkeRjasnell
authored andcommitted
doc: wrap links in <>
This fixes links that were broken due to inclusion of the trailing dot. Also simplifies a pair of occurances of [](). PR-URL: #23359 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent ed0070e commit 4f38d45

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

doc/api/deprecations.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ changes:
334334
Type: End-of-Life
335335

336336
Calling an asynchronous function without a callback throws a `TypeError`
337-
in Node.js 10.0.0 onwards. (See https://github.com/nodejs/node/pull/12562.)
337+
in Node.js 10.0.0 onwards. (See <https://github.com/nodejs/node/pull/12562>.)
338338

339339
<a id="DEP0014"></a>
340340
### DEP0014: fs.read legacy String interface
@@ -1717,7 +1717,7 @@ changes:
17171717
Type: End-of-Life
17181718
17191719
The AsyncHooks Sensitive API was never documented and had various minor issues.
1720-
(See https://github.com/nodejs/node/issues/15572.) Use the `AsyncResource`
1720+
(See <https://github.com/nodejs/node/issues/15572>.) Use the `AsyncResource`
17211721
API instead.
17221722
17231723
<a id="DEP0086"></a>
@@ -1737,8 +1737,8 @@ changes:
17371737
Type: End-of-Life
17381738
17391739
`runInAsyncIdScope` doesn't emit the `'before'` or `'after'` event and can thus
1740-
cause a lot of issues. See https://github.com/nodejs/node/issues/14328 for more
1741-
details.
1740+
cause a lot of issues. See <https://github.com/nodejs/node/issues/14328> for
1741+
more details.
17421742
17431743
<a id="DEP0089"></a>
17441744
### DEP0089: require('assert')
@@ -1897,7 +1897,7 @@ to unrecoverable errors.
18971897
18981898
Use [`asyncResource.runInAsyncScope()`][] API instead which provides a much
18991899
safer, and more convenient, alternative. See
1900-
https://github.com/nodejs/node/pull/18513 for more details.
1900+
<https://github.com/nodejs/node/pull/18513> for more details.
19011901
19021902
<a id="DEP0099"></a>
19031903
### DEP0099: async context-unaware node::MakeCallback C++ APIs

doc/api/repl.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -619,10 +619,10 @@ possible to connect to a long-running Node.js process without restarting it.
619619

620620
For an example of running a "full-featured" (`terminal`) REPL over
621621
a `net.Server` and `net.Socket` instance, see:
622-
[https://gist.github.com/TooTallNate/2209310](https://gist.github.com/TooTallNate/2209310).
622+
<https://gist.github.com/TooTallNate/2209310>.
623623

624624
For an example of running a REPL instance over [curl(1)][], see:
625-
[https://gist.github.com/TooTallNate/2053342](https://gist.github.com/TooTallNate/2053342).
625+
<https://gist.github.com/TooTallNate/2053342>.
626626

627627
[`'uncaughtException'`]: process.html#process_event_uncaughtexception
628628
[`--experimental-repl-await`]: cli.html#cli_experimental_repl_await

doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ field which always contains the value `'TLSv1/SSLv3'`.
566566
For example: `{ name: 'AES256-SHA', version: 'TLSv1/SSLv3' }`.
567567

568568
See `SSL_CIPHER_get_name()` in
569-
https://www.openssl.org/docs/man1.1.0/ssl/SSL_CIPHER_get_name.html for more
569+
<https://www.openssl.org/docs/man1.1.0/ssl/SSL_CIPHER_get_name.html> for more
570570
information.
571571

572572
### tlsSocket.getEphemeralKeyInfo()
@@ -683,7 +683,7 @@ Example responses include:
683683
* `TLSv1.2`
684684
* `unknown`
685685

686-
See https://www.openssl.org/docs/man1.1.0/ssl/SSL_get_version.html for more
686+
See <https://www.openssl.org/docs/man1.1.0/ssl/SSL_get_version.html> for more
687687
information.
688688

689689
### tlsSocket.getSession()

0 commit comments

Comments
 (0)