Skip to content

Commit 4c70e42

Browse files
aduh95targos
authored andcommitted
doc: use HEAD instead of master for links
PR-URL: #38518 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
1 parent f2f768f commit 4c70e42

File tree

20 files changed

+30
-30
lines changed

20 files changed

+30
-30
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!--
22
Before submitting a pull request, please read
3-
https://github.com/nodejs/node/blob/master/CONTRIBUTING.md.
3+
https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md.
44
55
Commit message formatting guidelines:
6-
https://github.com/nodejs/node/blob/master/doc/guides/contributing/pull-requests.md#commit-message-guidelines
6+
https://github.com/nodejs/node/blob/HEAD/doc/guides/contributing/pull-requests.md#commit-message-guidelines
77
88
For code changes:
99
1. Include tests for any bug fixes or new features.

BUILDING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ $ make
660660

661661
## `Intl` (ECMA-402) support
662662

663-
[Intl](https://github.com/nodejs/node/blob/master/doc/api/intl.md) support is
663+
[Intl](https://github.com/nodejs/node/blob/HEAD/doc/api/intl.md) support is
664664
enabled by default.
665665

666666
### Build with full ICU support (all locales supported by ICU)
@@ -804,4 +804,4 @@ When Node.js is built (with an intention to distribute) with an ABI
804804
incompatible with the official Node.js builds (e.g. using a ABI incompatible
805805
version of a dependency), please reserve and use a custom `NODE_MODULE_VERSION`
806806
by opening a pull request against the registry available at
807-
<https://github.com/nodejs/node/blob/master/doc/abi_version_registry.json>.
807+
<https://github.com/nodejs/node/blob/HEAD/doc/abi_version_registry.json>.

GOVERNANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,5 +173,5 @@ The TSC follows a [Consensus Seeking][] decision-making model per the
173173

174174
[Collaborators discussion page]: https://github.com/orgs/nodejs/teams/collaborators/discussions
175175
[Consensus Seeking]: https://en.wikipedia.org/wiki/Consensus-seeking_decision-making
176-
[TSC Charter]: https://github.com/nodejs/TSC/blob/master/TSC-Charter.md
176+
[TSC Charter]: https://github.com/nodejs/TSC/blob/HEAD/TSC-Charter.md
177177
[nodejs/node]: https://github.com/nodejs/node

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -681,13 +681,13 @@ Other keys used to sign some previous releases:
681681
Node.js is available under the
682682
[MIT license](https://opensource.org/licenses/MIT). Node.js also includes
683683
external libraries that are available under a variety of licenses. See
684-
[LICENSE](https://github.com/nodejs/node/blob/master/LICENSE) for the full
684+
[LICENSE](https://github.com/nodejs/node/blob/HEAD/LICENSE) for the full
685685
license text.
686686

687-
[Code of Conduct]: https://github.com/nodejs/admin/blob/master/CODE_OF_CONDUCT.md
687+
[Code of Conduct]: https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md
688688
[Contributing to the project]: CONTRIBUTING.md
689689
[Node.js Website]: https://nodejs.org/
690690
[OpenJS Foundation]: https://openjsf.org/
691-
[Strategic Initiatives]: https://github.com/nodejs/TSC/blob/master/Strategic-Initiatives.md
691+
[Strategic Initiatives]: https://github.com/nodejs/TSC/blob/HEAD/Strategic-Initiatives.md
692692
[Technical values and prioritization]: doc/guides/technical-values.md
693-
[Working Groups]: https://github.com/nodejs/TSC/blob/master/WORKING_GROUPS.md
693+
[Working Groups]: https://github.com/nodejs/TSC/blob/HEAD/WORKING_GROUPS.md

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ maintainers and should also be coordinated through the Node.js Ecosystem
2626
Security Team via [HackerOne](https://hackerone.com/nodejs-ecosystem).
2727

2828
Details regarding this process can be found in the
29-
[Security Working Group repository](https://github.com/nodejs/security-wg/blob/master/processes/third_party_vuln_process.md).
29+
[Security Working Group repository](https://github.com/nodejs/security-wg/blob/HEAD/processes/third_party_vuln_process.md).
3030

3131
Thank you for improving the security of Node.js and its ecosystem. Your efforts
3232
and responsible disclosure are greatly appreciated and will be acknowledged.

benchmark/_http-benchmarkers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const path = require('path');
55
const fs = require('fs');
66

77
const requirementsURL =
8-
'https://github.com/nodejs/node/blob/master/benchmark/writing-and-running-benchmarks.md#http-benchmark-requirements';
8+
'https://github.com/nodejs/node/blob/HEAD/benchmark/writing-and-running-benchmarks.md#http-benchmark-requirements';
99

1010
// The port used by servers and wrk
1111
exports.PORT = Number(process.env.PORT) || 12346;

doc/node.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ Node.js is available under the MIT license.
685685
.Pp
686686
Node.js also includes external libraries that are available under a variety of licenses.
687687
See
688-
.Sy https://github.com/nodejs/node/blob/master/LICENSE
688+
.Sy https://github.com/nodejs/node/blob/HEAD/LICENSE
689689
for the full license text.
690690
.
691691
.\"======================================================================
@@ -713,4 +713,4 @@ IRC (Node.js core development):
713713
.\"======================================================================
714714
.Sh AUTHORS
715715
Written and maintained by 1000+ contributors:
716-
.Sy https://github.com/nodejs/node/blob/master/AUTHORS
716+
.Sy https://github.com/nodejs/node/blob/HEAD/AUTHORS

glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
You may also need to check <https://chromium.googlesource.com/chromiumos/docs/+/master/glossary.md>.
1+
You may also need to check <https://chromium.googlesource.com/chromiumos/docs/+/HEAD/glossary.md>.
22

33
* LGTM: "Looks good to me", commonly used to approve a code review.
44
* PTAL: Please take a look.

lib/internal/crypto/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ function jobPromise(job) {
305305
// number of leading zero bits. Our conventional APIs for reading
306306
// an unsigned int from a Buffer are not adequate. The implementation
307307
// here is adapted from the chromium implementation here:
308-
// https://github.com/chromium/chromium/blob/master/third_party/blink/public/platform/web_crypto_algorithm_params.h, but ported to JavaScript
308+
// https://github.com/chromium/chromium/blob/HEAD/third_party/blink/public/platform/web_crypto_algorithm_params.h, but ported to JavaScript
309309
// Returns undefined if the conversion was unsuccessful.
310310
function bigIntArrayToUnsignedInt(input) {
311311
let result = 0;

lib/internal/freeze_intrinsics.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
// SPDX-License-Identifier: Apache-2.0
1616

1717
// Based upon:
18-
// https://github.com/google/caja/blob/master/src/com/google/caja/ses/startSES.js
19-
// https://github.com/google/caja/blob/master/src/com/google/caja/ses/repairES5.js
18+
// https://github.com/google/caja/blob/HEAD/src/com/google/caja/ses/startSES.js
19+
// https://github.com/google/caja/blob/HEAD/src/com/google/caja/ses/repairES5.js
2020
// https://github.com/tc39/proposal-ses/blob/e5271cc42a257a05dcae2fd94713ed2f46c08620/shim/src/freeze.js
2121

2222
/* global console */

0 commit comments

Comments
 (0)