Skip to content

Commit 92d91d1

Browse files
nschonnitargos
authored andcommitted
doc: add angle brackets around implicit links
PR-URL: #32676 Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent 4c67568 commit 92d91d1

14 files changed

+22
-22
lines changed

BUILDING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ For use of AVX2,
202202
* nasm version 2.10 or higher in Windows
203203

204204
Please refer to
205-
https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_ia32cap.html for details.
205+
<https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_ia32cap.html> for details.
206206

207207
If compiling without one of the above, use `configure` with the
208208
`--openssl-no-asm` flag. Otherwise, `configure` will fail.
@@ -283,7 +283,7 @@ $ make -j4
283283
If you run into a `No module named 'distutils.spawn'` error when executing
284284
`./configure`, please try `python3 -m pip install --upgrade setuptools` or
285285
`sudo apt install python3-distutils -y`.
286-
For more information, see https://github.com/nodejs/node/issues/30189.
286+
For more information, see <https://github.com/nodejs/node/issues/30189>.
287287

288288
The `-j4` option will cause `make` to run 4 simultaneous compilation jobs which
289289
may reduce build time. For more information, see the

doc/api/deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2334,7 +2334,7 @@ The undocumented `net._setSimultaneousAccepts()` function was originally
23342334
intended for debugging and performance tuning when using the `child_process`
23352335
and `cluster` modules on Windows. The function is not generally useful and
23362336
is being removed. See discussion here:
2337-
https://github.com/nodejs/node/issues/18391
2337+
<https://github.com/nodejs/node/issues/18391>
23382338
23392339
<a id="DEP0122"></a>
23402340
### DEP0122: `tls` `Server.prototype.setOptions()`

doc/api/errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,7 @@ is set for the `Http2Stream`.
11841184
### `ERR_INTERNAL_ASSERTION`
11851185

11861186
There was a bug in Node.js or incorrect usage of Node.js internals.
1187-
To fix the error, open an issue at https://github.com/nodejs/node/issues.
1187+
To fix the error, open an issue at <https://github.com/nodejs/node/issues>.
11881188

11891189
<a id="ERR_INCOMPATIBLE_OPTION_PAIR"></a>
11901190
### `ERR_INCOMPATIBLE_OPTION_PAIR`

doc/api/os.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ Returns the operating system as a string.
290290

291291
On POSIX systems, the operating system release is determined by calling
292292
[uname(3)][]. On Windows, `GetVersionExW()` is used. See
293-
https://en.wikipedia.org/wiki/Uname#Examples for more information.
293+
<https://en.wikipedia.org/wiki/Uname#Examples> for more information.
294294

295295
## `os.setPriority([pid, ]priority)`
296296
<!-- YAML
@@ -349,7 +349,7 @@ added: v0.3.3
349349
Returns the operating system name as returned by [uname(3)][]. For example, it
350350
returns `'Linux'` on Linux, `'Darwin'` on macOS, and `'Windows_NT'` on Windows.
351351

352-
See https://en.wikipedia.org/wiki/Uname#Examples for additional information
352+
See <https://en.wikipedia.org/wiki/Uname#Examples> for additional information
353353
about the output of running [uname(3)][] on various operating systems.
354354

355355
## `os.uptime()`
@@ -401,7 +401,7 @@ Returns a string identifying the kernel version.
401401
On POSIX systems, the operating system release is determined by calling
402402
[uname(3)][]. On Windows, `RtlGetVersion()` is used, and if it is not available,
403403
`GetVersionExW()` will be used. See
404-
https://en.wikipedia.org/wiki/Uname#Examples for more information.
404+
<https://en.wikipedia.org/wiki/Uname#Examples> for more information.
405405

406406
## OS Constants
407407

doc/guides/cve-management-process.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The Node.js project acts as a [Common Vulnerabilities and Exposures (CVE)
44
Numbering Authority (CNA)](https://cve.mitre.org/cve/cna.html).
55
The current scope is for all actively developed versions of software
6-
developed under the Node.js project (ie. https://github.com/nodejs).
6+
developed under the Node.js project (ie. <https://github.com/nodejs>).
77
This means that the Node.js team reviews CVE requests and if appropriate
88
assigns CVE numbers to vulnerabilities. The scope currently **does not**
99
include third party modules.
@@ -56,7 +56,7 @@ as outlined in the section titled `CVE Management process`.
5656
In addition, when moving a CVE from Available such that there are less
5757
than two remaining CVEs a new block must be requested as follows:
5858

59-
* Use the Mitre request form https://cveform.mitre.org/ with the
59+
* Use the Mitre request form <https://cveform.mitre.org/> with the
6060
option `Request a Block of IDs` to request a new block.
6161
* The new block will be sent to the requester through email.
6262
* Once the new block has been received, the requester will add them

doc/guides/maintaining-openssl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This document describes how to update `deps/openssl/`.
55
## Requirements
66
* Linux environment
77
* `perl` Only Perl version 5 is tested.
8-
* `nasm` (http://www.nasm.us/) The version of 2.11 or higher is needed.
8+
* `nasm` (<http://www.nasm.us/>) The version of 2.11 or higher is needed.
99
* GNU `as` in binutils. The version of 2.26 or higher is needed.
1010

1111
## 0. Check Requirements
@@ -27,7 +27,7 @@ NASM version 2.11.08
2727

2828
## 1. Obtain and extract new OpenSSL sources
2929

30-
Get a new source from https://www.openssl.org/source/ and extract
30+
Get a new source from <https://www.openssl.org/source/> and extract
3131
all files into `deps/openssl/openssl`. Then add all files and commit
3232
them.
3333
```sh

doc/guides/offboarding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Emeritus or leaves the project.
1313
* Some teams may also require a pull request to remove the Collaborator from
1414
a team listing. For example, if someone is removed from @nodejs/build,
1515
they should also be removed from the Build WG README.md file in the
16-
https://github.com/nodejs/build repository.
16+
<https://github.com/nodejs/build> repository.

doc/guides/releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ The nodejs.org website will automatically rebuild and include the new version.
682682
To announce the build on Twitter through the official @nodejs account, email
683683
[pr@nodejs.org](mailto:pr@nodejs.org) with a message such as:
684684

685-
> v5.8.0 of @nodejs is out: https://nodejs.org/en/blog/release/v5.8.0/
685+
> v5.8.0 of @nodejs is out: <https://nodejs.org/en/blog/release/v5.8.0/>
686686
>
687687
> something here about notable changes
688688

doc/guides/security-release-process.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ information described.
8888
* [ ] Make sure the PRs for the vulnerabilities are closed.
8989

9090
[H1 CVE requests]: https://hackerone.com/nodejs/cve_requests
91-
[docker-node]: https://github.com/nodejs/docker-node/issues)
92-
[nodejs/build]: https://github.com/nodejs/build/issues)
91+
[docker-node]: https://github.com/nodejs/docker-node/issues
92+
[nodejs/build]: https://github.com/nodejs/build/issues
9393
[email]: https://groups.google.com/forum/#!forum/nodejs-sec

doc/guides/using-symbols.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Symbol-keyed properties of an object are not included in the output of
99
default.
1010

1111
Learn more about symbols at
12-
https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol.
12+
<https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol>.
1313

1414
## `Symbol(string)`
1515

0 commit comments

Comments
 (0)