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:
authorDavid Sanders <dsanders11@ucsbalum.com>2022-01-10 13:15:23 +0300
committerGitHub <noreply@github.com>2022-01-10 13:15:23 +0300
commite667faf49d730672c9b745123b63c13ee7164dbd (patch)
tree50cb7ba4b371aafd070c052fe1395310fa9b551b /doc/api/inspector.md
parentc8d38e4933680b87814db2de428112c3640c07a3 (diff)
doc: update output in inspector examples
PR-URL: https://github.com/nodejs/node/pull/41390 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
Diffstat (limited to 'doc/api/inspector.md')
-rw-r--r--doc/api/inspector.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/inspector.md b/doc/api/inspector.md
index 3d0dbf7799e..9dcd7431b29 100644
--- a/doc/api/inspector.md
+++ b/doc/api/inspector.md
@@ -57,12 +57,12 @@ Return the URL of the active inspector, or `undefined` if there is none.
```console
$ node --inspect -p 'inspector.url()'
Debugger listening on ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34
-For help see https://nodejs.org/en/docs/inspector
+For help, see: https://nodejs.org/en/docs/inspector
ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34
$ node --inspect=localhost:3000 -p 'inspector.url()'
Debugger listening on ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a
-For help see https://nodejs.org/en/docs/inspector
+For help, see: https://nodejs.org/en/docs/inspector
ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a
$ node -p 'inspector.url()'