From 94fd9e8f47678691948a7d3c231824ca0714eadb Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Thu, 5 Sep 2024 13:02:35 -0400 Subject: [PATCH] Update write_to_file response --- src/ClaudeDev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ClaudeDev.ts b/src/ClaudeDev.ts index 878ba22..b184299 100644 --- a/src/ClaudeDev.ts +++ b/src/ClaudeDev.ts @@ -1068,7 +1068,7 @@ export class ClaudeDev { diff: this.createPrettyPatch(relPath, normalizedNewContent, normalizedEditedContent), } as ClaudeSayTool) ) - return `The user made the following updates to your content:\n\n${userDiff}\n\nThe updated content, which includes both your original modifications and the user's additional edits, has been successfully saved to ${relPath}.` + return `The user made the following updates to your content:\n\n${userDiff}\n\nThe updated content, which includes both your original modifications and the user's additional edits, has been successfully saved to ${relPath}. Note this does not mean you need to re-write the file with the user's changes, they have already been applied to the file.` } else { return `The content was successfully saved to ${relPath}.` }