From 5a0228897bc0d177b7433b6b787e8ff92cb4b658 Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Fri, 24 Oct 2025 13:46:47 -0500 Subject: [PATCH] ignore: reword --- packages/opencode/src/tool/edit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/tool/edit.ts b/packages/opencode/src/tool/edit.ts index c35f8969..c993c5fb 100644 --- a/packages/opencode/src/tool/edit.ts +++ b/packages/opencode/src/tool/edit.ts @@ -621,6 +621,6 @@ export function replace(content: string, oldString: string, newString: string, r throw new Error("oldString not found in content") } throw new Error( - "Found multiple matches for oldString. Include more surrounding code lines in oldString to uniquely identify which occurrence to replace.", + "Found multiple matches for oldString. Provide more surrounding lines in oldString to identify the correct match.", ) }