diff --git a/core/autocomplete/context/root-path-context/test/testCases/typescript.ts b/core/autocomplete/context/root-path-context/test/testCases/typescript.ts index ddda2bfdecf..63f97720986 100644 --- a/core/autocomplete/context/root-path-context/test/testCases/typescript.ts +++ b/core/autocomplete/context/root-path-context/test/testCases/typescript.ts @@ -298,7 +298,7 @@ const CLASS_METHODS = [ }, { nodeType: - "method_declaration with with generic params and generic return type", + "method_declaration with generic params and generic return type", fileName: "typescript/classMethods.ts", language: "TypeScript", cursorPosition: { line: 24, character: 11 }, diff --git a/core/commands/slash/built-in-legacy/draftIssue.ts b/core/commands/slash/built-in-legacy/draftIssue.ts index 9a1c5bdf9bb..fa4ef3a20b2 100644 --- a/core/commands/slash/built-in-legacy/draftIssue.ts +++ b/core/commands/slash/built-in-legacy/draftIssue.ts @@ -7,7 +7,7 @@ const PROMPT = ( title: string, ) => `You will be asked to generate the body of a GitHub issue given a user request. You should follow these rules: - Be descriptive but do not make up details -- If the the user request includes any code snippets that are relevant, reference them in code blocks +- If the user request includes any code snippets that are relevant, reference them in code blocks - Describe step by step how to reproduce the problem - Describe the ideal solution to the problem - Describe the expected behavior after the issue has been resolved diff --git a/core/llm/index.ts b/core/llm/index.ts index f7d97b73e3c..e72635c700a 100644 --- a/core/llm/index.ts +++ b/core/llm/index.ts @@ -456,7 +456,7 @@ export abstract class BaseLLM implements ILLM { ); } else { return new Error( - "You are using a Codestral API key, which is not compatible with the Mistral API. Please either obtain a Mistral API key, or use the the Codestral API by setting 'apiBase' to 'https://codestral.mistral.ai/v1' in config.json.", + "You are using a Codestral API key, which is not compatible with the Mistral API. Please either obtain a Mistral API key, or use the Codestral API by setting 'apiBase' to 'https://codestral.mistral.ai/v1' in config.json.", ); } }