From f4720269510f9e6464fed5cb0358d4bb7a276057 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Fri, 16 Aug 2024 23:16:39 +1200 Subject: [PATCH] update comment --- src/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__init__.py b/src/__init__.py index 24b56e9..41ed2ba 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -2,7 +2,7 @@ import sys # NOTE: this class is required to be able to use print/log commands and have them flush to stdout and stderr immediately # without wrapper stdout and stderr, when using `childProcess.stdout.on('data', ...)` in NodeJS script, we never get -# any events fired until the process exists. However, force flushing the streams does first the callbacks in NodeJS. +# any events fired until the process exits. However, force flushing the streams does fire the callbacks in NodeJS. # this class forces stream writes to be flushed immediately