Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: Fixing broken links to the v8 wiki
  • Loading branch information
tomgco committed Dec 11, 2015
commit 7a6dee56af6309f594a103766de36f03ab085f70
2 changes: 1 addition & 1 deletion doc/api/debugger.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,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 changes: 1 addition & 1 deletion doc/api/errors.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 1 addition & 1 deletion lib/_debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,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();
Expand Down