Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/indexing/CodebaseIndexer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion core/tools/implementations/createNewFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading