Skip to content

Commit fa308d3

Browse files
vsemozhetbytStephen Belanger
authored andcommitted
doc: fix external links with 404 status
PR-URL: nodejs/node#15463 Fixes: nodejs/node#15462 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
1 parent ec44d2c commit fa308d3

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

doc/api/crypto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2368,7 +2368,7 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
23682368
[Crypto Constants]: #crypto_crypto_constants_1
23692369
[HTML5's `keygen` element]: http://www.w3.org/TR/html5/forms.html#the-keygen-element
23702370
[NIST SP 800-131A]: http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf
2371-
[NIST SP 800-132]: http://csrc.nist.gov/publications/nistpubs/800-132/nist-sp800-132.pdf
2371+
[NIST SP 800-132]: http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf
23722372
[Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect
23732373
[OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.0.2/apps/spkac.html
23742374
[RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt

doc/api/os.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ The `os.release()` method returns a string identifying the operating system
338338
release.
339339

340340
*Note*: On POSIX systems, the operating system release is determined by
341-
calling uname(3). On Windows, `GetVersionExW()` is used. Please see
341+
calling [uname(3)][]. On Windows, `GetVersionExW()` is used. Please see
342342
https://en.wikipedia.org/wiki/Uname#Examples for more information.
343343

344344
## os.tmpdir()
@@ -374,11 +374,12 @@ added: v0.3.3
374374
* Returns: {string}
375375

376376
The `os.type()` method returns a string identifying the operating system name
377-
as returned by uname(3). For example `'Linux'` on Linux, `'Darwin'` on macOS and
378-
`'Windows_NT'` on Windows.
377+
as returned by [uname(3)][]. For example `'Linux'` on Linux, `'Darwin'` on macOS
378+
and `'Windows_NT'` on Windows.
379379

380380
Please see https://en.wikipedia.org/wiki/Uname#Examples for additional
381-
information about the output of running uname(3) on various operating systems.
381+
information about the output of running [uname(3)][] on various operating
382+
systems.
382383

383384
## os.uptime()
384385
<!-- YAML
@@ -1223,3 +1224,4 @@ information.
12231224
[`process.arch`]: process.html#process_process_arch
12241225
[`process.platform`]: process.html#process_process_platform
12251226
[OS Constants]: #os_os_constants
1227+
[uname(3)]: https://linux.die.net/man/3/uname

0 commit comments

Comments
 (0)