doc: Fixing broken links to the v8 wiki
authorTom Gallacher <tomgallacher23@gmail.com>
Fri, 11 Dec 2015 13:45:12 +0000 (13:45 +0000)
committerMyles Borins <mborins@us.ibm.com>
Tue, 19 Jan 2016 19:52:23 +0000 (11:52 -0800)
PR-URL: https://github.com/nodejs/node/pull/4241
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
doc/api/debugger.markdown
doc/api/errors.markdown
lib/_debugger.js

index 224f53eb45e2ba3caf27a566139f46a429381d5e..46c4d0dfd12617006f1aba94fb90b3d2922d7ee2 100644 (file)
@@ -168,4 +168,4 @@ debugger. The syntax is:
 * `node debug -p <pid>` - Connects to the process via the `pid`
 * `node debug <URI>` - Connects to the process via the URI such as localhost:5858
 
-[TCP protocol]: http://code.google.com/p/v8/wiki/DebuggerProtocol
+[TCP protocol]: https://github.com/v8/v8/wiki/Debugging-Protocol
index 799a8141af43e176f18e3c362227df09f3cbda9a..fa5b8e7cf1a32d9286950dbd8fbf6c629f77040c 100644 (file)
@@ -486,5 +486,5 @@ often a sign that a connected socket was not `.end()`'d appropriately.
 [online]: http://man7.org/linux/man-pages/man3/errno.3.html
 [stream-based]: stream.html
 [syscall]: http://man7.org/linux/man-pages/man2/syscall.2.html
-[V8's stack trace API]: https://code.google.com/p/v8-wiki/wiki/JavaScriptStackTraceApi
+[V8's stack trace API]: https://github.com/v8/v8/wiki/Stack-Trace-API
 [vm]: vm.html
index cbf7f7a5ed539722efef69b8f746af6ff1e0f951..dd47cbff2851492bda295dac6e3b9a56e9057f81 100644 (file)
@@ -45,7 +45,7 @@ exports.port = 5858;
 
 //
 // Parser/Serializer for V8 debugger protocol
-// http://code.google.com/p/v8/wiki/DebuggerProtocol
+// https://github.com/v8/v8/wiki/Debugging-Protocol
 //
 // Usage:
 //    p = new Protocol();