docs: fix typos in some files (#12706)

Co-authored-by: Jack Wotherspoon <jackwoth@google.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
Lê Nam Khánh
2025-11-07 22:51:56 +07:00
committed by GitHub
parent a0a6828265
commit ef4030331a
2 changed files with 4 additions and 4 deletions

View File

@@ -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,

View File

@@ -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.