diff --git a/src/extension/noConfigDebugInit.ts b/src/extension/noConfigDebugInit.ts index 4fdb24b..63ced9b 100644 --- a/src/extension/noConfigDebugInit.ts +++ b/src/extension/noConfigDebugInit.ts @@ -59,7 +59,9 @@ export async function registerNoConfigDebug( const bundledDebugPath = path.join(extPath, 'bundled', 'libs', 'debugpy'); collection.replace('BUNDLED_DEBUGPY_PATH', bundledDebugPath); - envVarCollection.description = l10n.t('Enables use of no-config debugging command in the terminal.'); + envVarCollection.description = l10n.t( + 'Enables use of no-config debugging command, `debugpy `, in the terminal.', + ); // create file system watcher for the debuggerAdapterEndpointFolder for when the communication port is written const fileSystemWatcher = createFileSystemWatcher(new RelativePattern(tempDirPath, '**/*'));