From 4efc90d798e13aa16bf5b0fc03f1d8d6fd35a559 Mon Sep 17 00:00:00 2001 From: Turtle Date: Mon, 27 Jul 2026 21:03:36 +0800 Subject: [PATCH] cleanup(tui): give xml-tool-output.ts a module header like its peers Every other tui source file opens with a multi-line description ending in @module; xml-tool-output.ts had only a one-line header. Align it. --- packages/ui/tui/src/components/xml-tool-output.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/ui/tui/src/components/xml-tool-output.ts b/packages/ui/tui/src/components/xml-tool-output.ts index 3e88120f7d..24beb58c31 100644 --- a/packages/ui/tui/src/components/xml-tool-output.ts +++ b/packages/ui/tui/src/components/xml-tool-output.ts @@ -1,4 +1,8 @@ -/** Conservative readable-tree rendering for model-facing text containing one XML document. */ +/** + * Conservative readable-tree rendering for model-facing text containing one XML + * document, used by the transcript's tool and context cards. + * @module @deepseek-ai/dsh-tui/components/xml-tool-output + */ import { SaxesParser } from 'saxes'