Skip to content

Commit fbdc848

Browse files
authored
fix: typos (microsoft#155310)
* fix: typos * chore: revert formatting changes * fix: Remove redundant blank lines
1 parent 1a8d4bf commit fbdc848

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

extensions/git/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1770,7 +1770,7 @@ export class CommandCenter {
17701770
const shouldPrompt = config.get<boolean>('confirmEmptyCommits') === true;
17711771

17721772
if (shouldPrompt) {
1773-
const message = localize('confirm emtpy commit', "Are you sure you want to create an empty commit?");
1773+
const message = localize('confirm empty commit', "Are you sure you want to create an empty commit?");
17741774
const yes = localize('yes', "Yes");
17751775
const neverAgain = localize('yes never again', "Yes, Don't Show Again");
17761776
const pick = await window.showWarningMessage(message, { modal: true }, yes, neverAgain);

src/vs/editor/common/services/getIconClasses.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ export function getIconClasses(modelService: IModelService, languageService: ILa
7171
return classes;
7272
}
7373

74-
7574
export function getIconClassesForLanguageId(languageId: string): string[] {
7675
return ['file-icon', `${cssEscape(languageId)}-lang-file-icon`];
7776
}

src/vs/workbench/browser/web.main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export class BrowserMain extends Disposable {
137137
const openerService = accessor.get(IOpenerService);
138138
const productService = accessor.get(IProductService);
139139
const telemetryService = accessor.get(ITelemetryService);
140-
const progessService = accessor.get(IProgressService);
140+
const progressService = accessor.get(IProgressService);
141141
const environmentService = accessor.get(IBrowserWorkbenchEnvironmentService);
142142
const instantiationService = accessor.get(IInstantiationService);
143143
const remoteExplorerService = accessor.get(IRemoteExplorerService);
@@ -169,7 +169,7 @@ export class BrowserMain extends Disposable {
169169
}
170170
},
171171
window: {
172-
withProgress: (options, task) => progessService.withProgress(options, task)
172+
withProgress: (options, task) => progressService.withProgress(options, task)
173173
},
174174
workspace: {
175175
openTunnel: async (tunnelOptions) => {

src/vs/workbench/services/configuration/browser/configurationService.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -912,12 +912,12 @@ export class WorkspaceService extends Disposable implements IWorkbenchConfigurat
912912
private async onWorkspaceFolderConfigurationChanged(folder: IWorkspaceFolder): Promise<void> {
913913
const [folderConfiguration] = await this.loadFolderConfigurations([folder]);
914914
const previous = { data: this._configuration.toData(), workspace: this.workspace };
915-
const folderConfiguraitonChange = this._configuration.compareAndUpdateFolderConfiguration(folder.uri, folderConfiguration);
915+
const folderConfigurationChange = this._configuration.compareAndUpdateFolderConfiguration(folder.uri, folderConfiguration);
916916
if (this.getWorkbenchState() === WorkbenchState.FOLDER) {
917917
const workspaceConfigurationChange = this._configuration.compareAndUpdateWorkspaceConfiguration(folderConfiguration);
918-
this.triggerConfigurationChange(mergeChanges(folderConfiguraitonChange, workspaceConfigurationChange), previous, ConfigurationTarget.WORKSPACE);
918+
this.triggerConfigurationChange(mergeChanges(folderConfigurationChange, workspaceConfigurationChange), previous, ConfigurationTarget.WORKSPACE);
919919
} else {
920-
this.triggerConfigurationChange(folderConfiguraitonChange, previous, ConfigurationTarget.WORKSPACE_FOLDER);
920+
this.triggerConfigurationChange(folderConfigurationChange, previous, ConfigurationTarget.WORKSPACE_FOLDER);
921921
}
922922
this.updateRestrictedSettings();
923923
}

src/vs/workbench/services/extensionManagement/browser/webExtensionsScannerService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export class WebExtensionsScannerService extends Disposable implements IWebExten
331331

332332
const missingExtensions = extensions.filter(({ id }) => !galleryExtensionsMap.has(id.toLowerCase()));
333333
if (missingExtensions.length) {
334-
this.logService.info('Skipping the additional builtin extensions because their compatible versions are not foud.', missingExtensions);
334+
this.logService.info('Skipping the additional builtin extensions because their compatible versions are not found.', missingExtensions);
335335
}
336336

337337
const webExtensions: IWebExtension[] = [];

0 commit comments

Comments
 (0)