| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent d74d67f commit b30ff35
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1008,7 +1008,7 @@ function createRepl(inspector) { | |||
| 1008 | 1008 | ||
| 1009 | 1009 | repl.setPrompt('> '); | |
| 1010 | 1010 | ||
| 1011 | - print('Press Ctrl + C to leave debug repl'); | ||
| 1011 | + print('Press Ctrl+C to leave debug repl'); | ||
| 1012 | 1012 | repl.displayPrompt(); | |
| 1013 | 1013 | }, | |
| 1014 | 1014 | ||
@@ -1080,7 +1080,7 @@ function createRepl(inspector) { | |||
| 1080 | 1080 | repl.on('reset', initializeContext); | |
| 1081 | 1081 | ||
| 1082 | 1082 | repl.defineCommand('interrupt', () => { | |
| 1083 | - // We want this for testing purposes where sending CTRL-C can be tricky. | ||
| 1083 | + // We want this for testing purposes where sending Ctrl+C can be tricky. | ||
| 1084 | 1084 | repl.emit('SIGINT'); | |
| 1085 | 1085 | }); | |
| 1086 | 1086 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -31,7 +31,7 @@ const assert = require('assert'); | |||
| 31 | 31 | .then(() => { | |
| 32 | 32 | assert.match( | |
| 33 | 33 | cli.output, | |
| 34 | - /Press Ctrl \+ C to leave debug repl\n+> /, | ||
| 34 | + /Press Ctrl\+C to leave debug repl\n+> /, | ||
| 35 | 35 | 'shows hint for how to leave repl'); | |
| 36 | 36 | assert.doesNotMatch(cli.output, /debug>/, 'changes the repl style'); | |
| 37 | 37 | }) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments