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:
authorJon Moss <me@jonathanmoss.me>2017-10-18 05:26:34 +0300
committerJames M Snell <jasnell@gmail.com>2017-10-18 21:17:57 +0300
commit1446db0ee84ec1a45d6bde68d06e463d44a7a706 (patch)
tree10b4a2b2d113a46af42fadfeef37df2c7a206c43 /doc/api/inspector.md
parent70832bc3538d8b4e1c67ce8c49617c6e06fe3187 (diff)
doc: update test/inspector reference
PR-URL: https://github.com/nodejs/node/pull/16277 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Diffstat (limited to 'doc/api/inspector.md')
-rw-r--r--doc/api/inspector.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/inspector.md b/doc/api/inspector.md
index 00fc927d0d3..32629af8c2f 100644
--- a/doc/api/inspector.md
+++ b/doc/api/inspector.md
@@ -85,7 +85,7 @@ execution is suspended (through breakpoints, for example):
session.on('Debugger.paused', ({ params }) => {
console.log(params.hitBreakpoints);
});
-// [ '/node/test/inspector/test-bindings.js:11:0' ]
+// [ '/the/file/that/has/the/breakpoint.js:11:0' ]
```
### session.connect()