From cb81b978cd3c572a516b8cf486239133e190d1d3 Mon Sep 17 00:00:00 2001 From: Octopus Date: Tue, 7 Apr 2026 12:33:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20typo=20'successfuly'=20?= =?UTF-8?q?=E2=86=92=20'successfully'=20(fixes=20#12052)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed spelling typo in the create_new_file tool success message and a matching typo in the CodebaseIndexer test description. --- core/indexing/CodebaseIndexer.test.ts | 2 +- core/tools/implementations/createNewFile.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/indexing/CodebaseIndexer.test.ts b/core/indexing/CodebaseIndexer.test.ts index fba10db8c50..5a71c2f6bcb 100644 --- a/core/indexing/CodebaseIndexer.test.ts +++ b/core/indexing/CodebaseIndexer.test.ts @@ -208,7 +208,7 @@ describe("CodebaseIndexer", () => { expect(indexed.some((file) => file.endsWith("main.py"))).toBe(true); }); - test("should successfuly re-index specific files", async () => { + test("should successfully re-index specific files", async () => { // Could add more specific tests for this but uses similar logic const before = await getAllIndexedFiles(); await codebaseIndexer.refreshCodebaseIndexFiles(before); diff --git a/core/tools/implementations/createNewFile.ts b/core/tools/implementations/createNewFile.ts index b6c626d7380..6c8330ea58c 100644 --- a/core/tools/implementations/createNewFile.ts +++ b/core/tools/implementations/createNewFile.ts @@ -33,7 +33,7 @@ export const createNewFileImpl: ToolImpl = async (args, extras) => { { name: getUriPathBasename(resolvedFileUri), description: getCleanUriPath(resolvedFileUri), - content: "File created successfuly", + content: "File created successfully", uri: { type: "file", value: resolvedFileUri,