From 09369a05a44b9c185031ea443e44c756cb998fac Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 29 Aug 2020 23:40:04 -0700 Subject: [PATCH] doc,tools: remove malfunctioning Linux manpage linker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Linux manpage auto-linking is resulting in extraneous links with empty text in the docs. Remove it as the only thing it affects is linked explicitly in the one document that uses it. PR-URL: https://github.com/nodejs/node/pull/34985 Reviewed-By: Michaƫl Zasso Reviewed-By: Luigi Pinca Reviewed-By: Mary Marchini --- doc/api/os.md | 12 ++++++------ tools/doc/html.js | 5 ----- 2 files changed, 6 insertions(+), 11 deletions(-) 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()`