Browse Source

doc: Fixing broken links to the v8 wiki

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>
v4.x
Tom Gallacher 9 years ago
committed by Myles Borins
parent
commit
6c30d087e5
  1. 2
      doc/api/debugger.markdown
  2. 2
      doc/api/errors.markdown
  3. 2
      lib/_debugger.js

2
doc/api/debugger.markdown

@ -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

2
doc/api/errors.markdown

@ -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

2
lib/_debugger.js

@ -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();

Loading…
Cancel
Save