From ef4030331ab3af639f238466b10aa0999df1695a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Nam=20Kh=C3=A1nh?= <55955273+khanhkhanhlele@users.noreply.github.com> Date: Fri, 7 Nov 2025 22:51:56 +0700 Subject: [PATCH] docs: fix typos in some files (#12706) Co-authored-by: Jack Wotherspoon Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- packages/core/src/ide/ide-client.ts | 6 +++--- packages/core/src/ide/types.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/core/src/ide/ide-client.ts b/packages/core/src/ide/ide-client.ts index c42f61a7a6..7190228eb0 100644 --- a/packages/core/src/ide/ide-client.ts +++ b/packages/core/src/ide/ide-client.ts @@ -577,7 +577,7 @@ export class IdeClient { return undefined; } - // For backwards compatability + // For backwards compatibility try { const portFile = path.join( os.tmpdir(), @@ -668,7 +668,7 @@ export class IdeClient { } private createProxyAwareFetch() { - // ignore proxy for '127.0.0.1' by deafult to allow connecting to the ide mcp server + // ignore proxy for '127.0.0.1' by default to allow connecting to the ide mcp server const existingNoProxy = process.env['NO_PROXY'] || ''; const agent = new EnvHttpProxyAgent({ noProxy: [existingNoProxy, '127.0.0.1'].filter(Boolean).join(','), @@ -750,7 +750,7 @@ export class IdeClient { }, ); - // For backwards compatability. Newer extension versions will only send + // For backwards compatibility. Newer extension versions will only send // IdeDiffRejectedNotificationSchema. this.client.setNotificationHandler( IdeDiffClosedNotificationSchema, diff --git a/packages/core/src/ide/types.ts b/packages/core/src/ide/types.ts index f94132db59..dbbce44622 100644 --- a/packages/core/src/ide/types.ts +++ b/packages/core/src/ide/types.ts @@ -105,7 +105,7 @@ export const IdeDiffRejectedNotificationSchema = z.object({ }); /** - * This is defineded for backwards compatability only. Newer extension versions + * This is defined for backwards compatibility only. Newer extension versions * will only send IdeDiffRejectedNotificationSchema. * * A notification that a diff has been closed in the IDE.