From 144880b1b5948e2d74b730f0a59a534f05de576d Mon Sep 17 00:00:00 2001 From: Prem Sugeendran <271522295+premsreelathasugeendran@users.noreply.github.com> Date: Sun, 10 May 2026 14:46:31 +0000 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