doc: fix external links with 404 status · nodejs/node@f1eda4a

2 files changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -2021,7 +2021,7 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.

20212021

[HTML5's `keygen` element]: http://www.w3.org/TR/html5/forms.html#the-keygen-element

20222022

[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector

20232023

[NIST SP 800-131A]: http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf

2024-

[NIST SP 800-132]: http://csrc.nist.gov/publications/nistpubs/800-132/nist-sp800-132.pdf

2024+

[NIST SP 800-132]: http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf

20252025

[OpenSSL cipher list format]: https://www.openssl.org/docs/man1.0.2/apps/ciphers.html#CIPHER-LIST-FORMAT

20262026

[OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.0.2/apps/spkac.html

20272027

[publicly trusted list of CAs]: https://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt

Original file line numberDiff line numberDiff line change

@@ -331,7 +331,7 @@ The `os.release()` method returns a string identifying the operating system

331331

release.

332332
333333

*Note*: On POSIX systems, the operating system release is determined by calling

334-

uname(3). On Windows, `GetVersionExW()` is used. Please see

334+

[uname(3)][]. On Windows, `GetVersionExW()` is used. Please see

335335

https://en.wikipedia.org/wiki/Uname#Examples for more information.

336336
337337

## os.tmpdir()

@@ -362,11 +362,12 @@ added: v0.3.3

362362

* Returns: {string}

363363
364364

The `os.type()` method returns a string identifying the operating system name

365-

as returned by uname(3). For example `'Linux'` on Linux, `'Darwin'` on macOS and

366-

`'Windows_NT'` on Windows.

365+

as returned by [uname(3)][]. For example `'Linux'` on Linux, `'Darwin'` on macOS

366+

and `'Windows_NT'` on Windows.

367367
368368

Please see https://en.wikipedia.org/wiki/Uname#Examples for additional

369-

information about the output of running uname(3) on various operating systems.

369+

information about the output of running [uname(3)][] on various operating

370+

systems.

370371
371372

## os.uptime()

372373

<!-- YAML

@@ -1167,3 +1168,4 @@ The following error codes are specific to the Windows operating system:

11671168

[`process.arch`]: process.html#process_process_arch

11681169

[`process.platform`]: process.html#process_process_platform

11691170

[OS Constants]: #os_os_constants

1171+

[uname(3)]: https://linux.die.net/man/3/uname