Skip to content

Commit 0d0b9ee

Browse files
authored
Fix spelling. (#9270)
* Fix spelling.
1 parent 62ac866 commit 0d0b9ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Extension/src/Debugger/configurationProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ export class DebugConfigurationProvider implements vscode.DebugConfigurationProv
655655
if (selectedConfig.preLaunchTask) {
656656
await cppBuildTaskProvider.writeBuildTask(selectedConfig.preLaunchTask);
657657
}
658-
// Write debug configuraion in launch.json file.
658+
// Write debug configuration in launch.json file.
659659
await this.writeDebugConfig(selectedConfig, folder);
660660

661661
}

Extension/src/Debugger/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { CppdbgDebugAdapterDescriptorFactory, CppvsdbgDebugAdapterDescriptorFact
1212
import { DebuggerType } from './configurations';
1313
import * as nls from 'vscode-nls';
1414

15-
// The extension deactivate method is asynchronous, so we handle the disposables ourselves instead of using extensonContext.subscriptions.
15+
// The extension deactivate method is asynchronous, so we handle the disposables ourselves instead of using extensionContext.subscriptions.
1616
const disposables: vscode.Disposable[] = [];
1717
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
1818

Extension/src/LanguageServer/cppBuildTaskProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ class CustomBuildTaskTerminal implements Pseudoterminal {
363363
let command: string = util.resolveVariables(this.command);
364364
let activeCommand: string = command;
365365

366-
// Create the exe folder path if it doesn't exists.
366+
// Create the exe folder path if it doesn't exist.
367367
const exePath: string | undefined = util.resolveVariables(util.findExePathInArgs(this.args));
368368
util.createDirIfNotExistsSync(exePath);
369369

0 commit comments

Comments
 (0)