From 8c74fb348436dd4d7235cac45aa06bba95d6357f Mon Sep 17 00:00:00 2001 From: Simen Svale Date: Tue, 30 Dec 2025 02:07:22 +0100 Subject: [PATCH] Clarify deleteBreakpoint works for watchpoints too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Minor AX fix from owl's final review. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index ae5c77b..51a4c15 100644 --- a/src/index.ts +++ b/src/index.ts @@ -785,7 +785,7 @@ Related tools: setWatchpoint, deleteBreakpoint, listBreakpoints`, enabled: wp.enabled, temporary: wp.temporary, })), - hint: `${watchpoints.length} watchpoint(s) active. Use deleteBreakpoint(id) to remove.`, + hint: `${watchpoints.length} watchpoint(s) active. Use deleteBreakpoint(id) to remove (works for both breakpoints and watchpoints).`, }); } );