diff --git a/src/vs/platform/update/common/update.ts b/src/vs/platform/update/common/update.ts index cf66654c330ee..ae027c2109ac8 100644 --- a/src/vs/platform/update/common/update.ts +++ b/src/vs/platform/update/common/update.ts @@ -29,7 +29,7 @@ export interface IUpdate { * * Available: There is an update available for download (linux). * Ready: Code will be updated as soon as it restarts (win32, darwin). - * Donwloaded: There is an update ready to be installed in the background (win32). + * Downloaded: There is an update ready to be installed in the background (win32). */ export const enum StateType { diff --git a/src/vs/workbench/browser/web.main.ts b/src/vs/workbench/browser/web.main.ts index 379ba74d0b6ce..fd4073c7b5134 100644 --- a/src/vs/workbench/browser/web.main.ts +++ b/src/vs/workbench/browser/web.main.ts @@ -241,7 +241,7 @@ class BrowserMain extends Disposable { await userDataInitializationService.initializeRequiredResources(); // Important: Reload only local user configuration after initializing - // Reloading complete configuraiton blocks workbench until remote configuration is loaded. + // Reloading complete configuration blocks workbench until remote configuration is loaded. await configurationService.reloadLocalUserConfiguration(); mark('code/didInitRequiredUserData'); diff --git a/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.ts b/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.ts index 4962d6e0ec6a5..597dc280d24a2 100644 --- a/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.ts +++ b/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.ts @@ -190,7 +190,7 @@ export class UntitledFileWorkingCopy ex this.setDirty(this.hasAssociatedFilePath || !!backup || Boolean(this.initialContents && this.initialContents.markDirty !== false)); // If we have initial contents, make sure to emit this - // as the appropiate events to the outside. + // as the appropriate events to the outside. if (!!backup || this.initialContents) { this._onDidChangeContent.fire(); } diff --git a/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopyManager.ts b/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopyManager.ts index 4d1502c70cad5..c101e6a6ba940 100644 --- a/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopyManager.ts +++ b/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopyManager.ts @@ -152,7 +152,7 @@ export class UntitledFileWorkingCopyManager s.indexOf(text) >= 0); await this.code.dispatchKeybinding('enter'); await this.code.waitForElements(CONSOLE_EVALUATION_RESULT, false,