diff options
| author | Jacob Richman <[email protected]> | 2025-05-02 14:39:39 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-02 14:39:39 -0700 |
| commit | 0556358560f065dec5e35fd5b0544b18ddcc4495 (patch) | |
| tree | 8ca5ca20991b2950b2360839d35b53d3c03f34ed /packages/server/src/tools/edit.ts | |
| parent | 69d1c644d9034138ed7418f4450230756e84ad93 (diff) | |
Cleanup low value comments. (#248)
Diffstat (limited to 'packages/server/src/tools/edit.ts')
| -rw-r--r-- | packages/server/src/tools/edit.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/server/src/tools/edit.ts b/packages/server/src/tools/edit.ts index 3b317a08..72c25603 100644 --- a/packages/server/src/tools/edit.ts +++ b/packages/server/src/tools/edit.ts @@ -53,10 +53,10 @@ interface CalculatedEdit { } /** - * Implementation of the Edit tool logic (moved from CLI) + * Implementation of the Edit tool logic */ export class EditTool extends BaseTool<EditToolParams, ToolResult> { - static readonly Name = 'replace'; // Keep static name + static readonly Name = 'replace'; private shouldAlwaysEdit = false; /** @@ -371,7 +371,7 @@ export class EditTool extends BaseTool<EditToolParams, ToolResult> { editData.newContent, 'Current', 'Proposed', - { context: 3 }, // Removed ignoreWhitespace for potentially more accurate display diff + { context: 3 }, ); displayResult = { fileDiff }; } |
