summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-10-17 22:26:34 -0400
committerJames M Snell <jasnell@gmail.com>2017-10-18 11:17:57 -0700
commit1446db0ee84ec1a45d6bde68d06e463d44a7a706 (patch)
tree10b4a2b2d113a46af42fadfeef37df2c7a206c43
parent70832bc3538d8b4e1c67ce8c49617c6e06fe3187 (diff)
downloadandroid-node-v8-1446db0ee84ec1a45d6bde68d06e463d44a7a706.tar.gz
android-node-v8-1446db0ee84ec1a45d6bde68d06e463d44a7a706.tar.bz2
android-node-v8-1446db0ee84ec1a45d6bde68d06e463d44a7a706.zip
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>
-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 00fc927d0d..32629af8c2 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()