From c3f775aae48b342e2443e08b05a3936841fd8d07 Mon Sep 17 00:00:00 2001 From: Saurabh Date: Fri, 20 Mar 2026 13:20:47 +0530 Subject: [PATCH] fix: correct comment to reference pipes instead of TCP in qmd-process --- src/memory/qmd-process.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/memory/qmd-process.ts b/src/memory/qmd-process.ts index eb146d0c575..e55acd7b20c 100644 --- a/src/memory/qmd-process.ts +++ b/src/memory/qmd-process.ts @@ -57,7 +57,7 @@ export async function runCliCommand(params: { }, params.timeoutMs) : null; // StringDecoder buffers incomplete multi-byte UTF-8 sequences across - // TCP/pipe chunks, preventing U+FFFD replacement at chunk boundaries. + // pipe chunks, preventing U+FFFD replacement at chunk boundaries. const stdoutDecoder = new StringDecoder("utf8"); const stderrDecoder = new StringDecoder("utf8"); child.stdout.on("data", (data) => {