@@ -14,7 +14,7 @@ prompt will be displayed indicating successful launch of the debugger:
14
14
``` txt
15
15
$ node inspect myscript.js
16
16
< Debugger listening on ws://127.0.0.1:9229/80e7a814-7cd3-49fb-921a-2e02228cd5ba
17
- < For help see https://nodejs.org/en/docs/inspector
17
+ < For help, see: https://nodejs.org/en/docs/inspector
18
18
< Debugger attached.
19
19
Break on start in myscript.js:1
20
20
> 1 (function (exports, require, module, __filename, __dirname) { global.x = 5;
@@ -45,7 +45,7 @@ Once the debugger is run, a breakpoint will occur at line 3:
45
45
``` txt
46
46
$ node inspect myscript.js
47
47
< Debugger listening on ws://127.0.0.1:9229/80e7a814-7cd3-49fb-921a-2e02228cd5ba
48
- < For help see https://nodejs.org/en/docs/inspector
48
+ < For help, see: https://nodejs.org/en/docs/inspector
49
49
< Debugger attached.
50
50
Break on start in myscript.js:1
51
51
> 1 (function (exports, require, module, __filename, __dirname) { global.x = 5;
@@ -127,7 +127,7 @@ is not loaded yet:
127
127
``` txt
128
128
$ node inspect main.js
129
129
< Debugger listening on ws://127.0.0.1:9229/4e3db158-9791-4274-8909-914f7facf3bd
130
- < For help see https://nodejs.org/en/docs/inspector
130
+ < For help, see: https://nodejs.org/en/docs/inspector
131
131
< Debugger attached.
132
132
Break on start in main.js:1
133
133
> 1 (function (exports, require, module, __filename, __dirname) { const mod = require('./mod.js');
0 commit comments