From 1af8dd638be0ca9553455fdf4b81999ab11b4a73 Mon Sep 17 00:00:00 2001 From: 777genius Date: Sat, 30 May 2026 16:07:44 +0300 Subject: [PATCH] docs: normalize jsonl reader comment punctuation --- src/main/utils/jsonlLineReader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/utils/jsonlLineReader.ts b/src/main/utils/jsonlLineReader.ts index b7d9cb8c..15321a7d 100644 --- a/src/main/utils/jsonlLineReader.ts +++ b/src/main/utils/jsonlLineReader.ts @@ -12,7 +12,7 @@ import { createReadStream } from 'fs'; * a JSON string value, which readline would. * * The stream is opened with utf8 encoding, so the runtime's StringDecoder reassembles - * multi-byte characters that straddle a chunk boundary before we split — string + * multi-byte characters that straddle a chunk boundary before we split - string * concatenation + `indexOf('\n')` is therefore safe. * * Semantics match the readline loop the callers replace: