Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typos. #135729

Merged
merged 3 commits into from Nov 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/vs/platform/update/common/update.ts
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/web.main.ts
Expand Up @@ -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');
Expand Down
Expand Up @@ -190,7 +190,7 @@ export class UntitledFileWorkingCopy<M extends IUntitledFileWorkingCopyModel> 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();
}
Expand Down
Expand Up @@ -152,7 +152,7 @@ export class UntitledFileWorkingCopyManager<M extends IUntitledFileWorkingCopyMo
private massageOptions(options: IInternalUntitledFileWorkingCopyOptions): IInternalUntitledFileWorkingCopyOptions {
const massagedOptions: IInternalUntitledFileWorkingCopyOptions = Object.create(null);

// Handle associcated resource
// Handle associated resource
if (options.associatedResource) {
massagedOptions.untitledResource = URI.from({
scheme: Schemas.untitled,
Expand Down
Expand Up @@ -58,7 +58,7 @@ export interface IWorkingCopyBackupMeta {
[key: string]: unknown;

/**
* `typeId` is a reverved property that cannot be used
* `typeId` is a reserved property that cannot be used
* as backup metadata.
*/
typeId?: never;
Expand Down
2 changes: 1 addition & 1 deletion test/automation/src/debug.ts
Expand Up @@ -130,7 +130,7 @@ export class Debug extends Viewlet {
await this.code.waitForActiveElement(REPL_FOCUSED);
await this.code.waitForSetValue(REPL_FOCUSED, text);

// Wait for the keys to be picked up by the editor model such that repl evalutes what just got typed
// Wait for the keys to be picked up by the editor model such that repl evaluates what just got typed
await this.editor.waitForEditorContents('debug:replinput', s => s.indexOf(text) >= 0);
await this.code.dispatchKeybinding('enter');
await this.code.waitForElements(CONSOLE_EVALUATION_RESULT, false,
Expand Down