diff --git a/src/vs/platform/update/common/update.ts b/src/vs/platform/update/common/update.ts index cf66654c330..ae027c2109a 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 a0a9a1954c2..fdbd9256d60 100644 --- a/src/vs/workbench/browser/web.main.ts +++ b/src/vs/workbench/browser/web.main.ts @@ -239,7 +239,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 4962d6e0ec6..597dc280d24 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 4d1502c70ca..c101e6a6ba9 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,