diff --git a/doc/api/os.md b/doc/api/os.md index 83681cdedfad04..9dfe629a97d2f8 100644 --- a/doc/api/os.md +++ b/doc/api/os.md @@ -291,7 +291,7 @@ added: v0.3.3 Returns the operating system as a string. On POSIX systems, the operating system release is determined by calling -[uname(3)][]. On Windows, `GetVersionExW()` is used. See +[`uname(3)`][]. On Windows, `GetVersionExW()` is used. See for more information. ## `os.setPriority([pid, ]priority)` @@ -348,11 +348,11 @@ added: v0.3.3 * Returns: {string} -Returns the operating system name as returned by [uname(3)][]. For example, it +Returns the operating system name as returned by [`uname(3)`][]. For example, it returns `'Linux'` on Linux, `'Darwin'` on macOS, and `'Windows_NT'` on Windows. See for additional information -about the output of running [uname(3)][] on various operating systems. +about the output of running [`uname(3)`][] on various operating systems. ## `os.uptime()`