Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeng Yu <F3n67u@outlook.com>2022-06-17 10:43:36 +0300
committerGitHub <noreply@github.com>2022-06-17 10:43:36 +0300
commit2887b1b9705aa4edfb145a4e70b6325fb3206b50 (patch)
tree56340918e8d5d68ccdacee855e349564381c477b /src/README.md
parent24623dc586ee23c17622e8bc6ed9e472aee33419 (diff)
doc: remove branch name mention in `src/README.md`
PR-URL: https://github.com/nodejs/node/pull/43442 Refs: https://github.com/nodejs/node/issues/33864 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Diffstat (limited to 'src/README.md')
-rw-r--r--src/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/README.md b/src/README.md
index 40e3e0f3f1a..774614395af 100644
--- a/src/README.md
+++ b/src/README.md
@@ -20,8 +20,8 @@ V8 does not provide much public API documentation beyond what is
available in its C++ header files, most importantly `v8.h`, which can be
accessed online in the following locations:
-* On GitHub: [`v8.h` in Node.js master][]
-* On GitHub: [`v8.h` in V8 master][]
+* On GitHub: [`v8.h` in Node.js][]
+* On GitHub: [`v8.h` in V8][]
* On the Chromium project's Code Search application: [`v8.h` in Code Search][]
V8 also provides an [introduction for V8 embedders][],
@@ -1047,8 +1047,8 @@ static void GetUserInfo(const FunctionCallbackInfo<Value>& args) {
[`req_wrap.h`]: req_wrap.h
[`util.h`]: util.h
[`v8.h` in Code Search]: https://cs.chromium.org/chromium/src/v8/include/v8.h
-[`v8.h` in Node.js master]: https://github.com/nodejs/node/blob/master/deps/v8/include/v8.h
-[`v8.h` in V8 master]: https://github.com/v8/v8/blob/master/include/v8.h
+[`v8.h` in Node.js]: https://github.com/nodejs/node/blob/HEAD/deps/v8/include/v8.h
+[`v8.h` in V8]: https://github.com/v8/v8/blob/HEAD/include/v8.h
[`vm` module]: https://nodejs.org/api/vm.html
[binding function]: #binding-functions
[cleanup hooks]: #cleanup-hooks