fix: correct comment to reference pipes instead of TCP in qmd-process

This commit is contained in:
Saurabh 2026-03-20 13:20:47 +05:30
parent 208d5d6b81
commit c3f775aae4

View File

@ -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) => {