From 222565d71789386a4f6b6b4d62d5b395f578de02 Mon Sep 17 00:00:00 2001 From: Premsugeendran Date: Sun, 10 May 2026 10:46:31 -0400 Subject: [PATCH] chore: fix typos "recieve(s)"/"seperated" in index.ts comments --- index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.ts b/index.ts index 9569354..5ae597c 100644 --- a/index.ts +++ b/index.ts @@ -197,9 +197,9 @@ export class PythonShell extends EventEmitter { }); // Node buffers stdout&stderr in batches regardless of newline placement - // This is troublesome if you want to recieve distinct individual messages - // for example JSON parsing breaks if it recieves partial JSON - // so we use newlineTransformer to emit each batch seperated by newline + // This is troublesome if you want to receive distinct individual messages + // for example JSON parsing breaks if it receives partial JSON + // so we use newlineTransformer to emit each batch separated by newline if (this.parser && this.stdout) { if (!stdoutSplitter) stdoutSplitter = new NewlineTransformer(); // note that setting the encoding turns the chunk into a string