From f1eda4a3914e58ccc1c5700256f7201e8554522d Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Wed, 18 Oct 2017 03:44:39 +0300 Subject: [PATCH] doc: fix external links with 404 status Backport-PR-URL: https://github.com/nodejs/node/pull/16275 PR-URL: https://github.com/nodejs/node/pull/15463 Fixes: https://github.com/nodejs/node/issues/15462 Reviewed-By: James M Snell Reviewed-By: Joyee Cheung Reviewed-By: Luigi Pinca Reviewed-By: Refael Ackermann --- doc/api/crypto.md | 2 +- doc/api/os.md | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 2adaf28ed53504..e8d9a94462b5e0 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2021,7 +2021,7 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL. [HTML5's `keygen` element]: http://www.w3.org/TR/html5/forms.html#the-keygen-element [initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector [NIST SP 800-131A]: http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf -[NIST SP 800-132]: http://csrc.nist.gov/publications/nistpubs/800-132/nist-sp800-132.pdf +[NIST SP 800-132]: http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf [OpenSSL cipher list format]: https://www.openssl.org/docs/man1.0.2/apps/ciphers.html#CIPHER-LIST-FORMAT [OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.0.2/apps/spkac.html [publicly trusted list of CAs]: https://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt diff --git a/doc/api/os.md b/doc/api/os.md index 3dc2561ad72626..babb80e6f07b84 100644 --- a/doc/api/os.md +++ b/doc/api/os.md @@ -331,7 +331,7 @@ The `os.release()` method returns a string identifying the operating system release. *Note*: On POSIX systems, the operating system release is determined by calling -uname(3). On Windows, `GetVersionExW()` is used. Please see +[uname(3)][]. On Windows, `GetVersionExW()` is used. Please see https://en.wikipedia.org/wiki/Uname#Examples for more information. ## os.tmpdir() @@ -362,11 +362,12 @@ added: v0.3.3 * Returns: {string} The `os.type()` method returns a string identifying the operating system name -as returned by uname(3). For example `'Linux'` on Linux, `'Darwin'` on macOS and -`'Windows_NT'` on Windows. +as returned by [uname(3)][]. For example `'Linux'` on Linux, `'Darwin'` on macOS +and `'Windows_NT'` on Windows. Please see https://en.wikipedia.org/wiki/Uname#Examples for additional -information about the output of running uname(3) on various operating systems. +information about the output of running [uname(3)][] on various operating +systems. ## os.uptime()