diff --git a/src/node/extension/extension.ts b/src/node/extension/extension.ts index 4afe58ca..0563b4c5 100644 --- a/src/node/extension/extension.ts +++ b/src/node/extension/extension.ts @@ -117,7 +117,7 @@ function createInitialConfigurations(folderUri: vscode.Uri): string { } // Massage the configuration string, add an aditional tab and comment out processId. - // Add an aditional empty line between attributes which the user should not edit. + // Add an additional empty line between attributes which the user should not edit. const configurationsMassaged = JSON.stringify(initialConfigurations, null, '\t').split('\n').map(line => '\t' + line).join('\n').trim(); const comment1 = localize('launch.config.comment1', "Use IntelliSense to learn about possible Node.js debug attributes.");