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
path: root/doc
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-10-18 05:26:34 +0300
committerMyles Borins <mylesborins@google.com>2017-10-24 00:16:46 +0300
commitd92b45ec5557a51f0765cfe98b196a992c8c2b40 (patch)
tree627e2f887f2892d1da6304239b74bc903e3a89ff /doc
parentc6b2fa904ecdbfc542c6b80ef5de26c41e062a78 (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')
-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()