From ee46c7302335ff495fb8acb632aa0b0a1a16e986 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Tue, 19 Sep 2017 02:56:23 +0300 Subject: doc: fix external links with 404 status 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/os.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'doc/api/os.md') diff --git a/doc/api/os.md b/doc/api/os.md index 1bef5c5501..38f1d25ab2 100644 --- a/doc/api/os.md +++ b/doc/api/os.md @@ -338,7 +338,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 +calling [uname(3)][]. On Windows, `GetVersionExW()` is used. Please see https://en.wikipedia.org/wiki/Uname#Examples for more information. ## os.tmpdir() @@ -374,11 +374,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()