Skip to content

Commit 77c68c3

Browse files
authored
Typo fix (#999)
* Typo fix Changed "sesssion" to "session" * Typos
1 parent 8f4e248 commit 77c68c3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/build/strings.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ const strings = {
191191
'Try to restart the program if it exits with a non-zero exit code.',
192192
'node.attach.restart.description':
193193
"Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
194-
'node.killBehavior.description': `Configures how debug process are killed when stopping the sesssion. Can be:
194+
'node.killBehavior.description': `Configures how debug processes are killed when stopping the session. Can be:
195195
196196
- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or \`taskkill.exe /F\` on Windows.
197197
- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or \`taskkill.exe\` with no \`/F\` (force) flag on Windows.
@@ -229,15 +229,15 @@ const strings = {
229229
'node.timeout.description':
230230
'Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.',
231231
'node.versionHint.description':
232-
"Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not working.",
233-
'timeouts.generalDescription': 'Timeouts for several debugger operations',
234-
'timeouts.generalDescription.markdown': 'Timeouts for several debugger operations',
235-
'timeouts.sourceMaps.description': 'Timeouts related to source maps operations',
232+
"Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
233+
'timeouts.generalDescription': 'Timeouts for several debugger operations.',
234+
'timeouts.generalDescription.markdown': 'Timeouts for several debugger operations.',
235+
'timeouts.sourceMaps.description': 'Timeouts related to source maps operations.',
236236
'timeouts.sourceMaps.sourceMapMinPause.description':
237237
'Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed',
238238
'timeouts.sourceMaps.sourceMapCumulativePause.description':
239239
'Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted',
240-
'node.profileStartup.description': 'If true, will start profiling soon as the process launches',
240+
'node.profileStartup.description': 'If true, will start profiling as soon as the process launches',
241241
'node.attachSimplePort.description':
242242
'If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.',
243243
'enableContentValidation.description':

0 commit comments

Comments
 (0)