From f43ff7d03c75bfb20f6529743e8a7ba5bec26eeb Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sat, 21 May 2022 19:58:41 -0400 Subject: [PATCH] chore: fix comments --- job.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/job.go b/job.go index c1ba4bb..d633efc 100644 --- a/job.go +++ b/job.go @@ -45,12 +45,12 @@ func (j *job) start() error { } // bgProcAttr is defined in execfile_.go, it holds a procattr struct // in a simple explanation, it makes signals from hilbish (sigint) - // not go to it + // not go to it (child process) j.handle.SysProcAttr = bgProcAttr // reset output buffers j.stdout.Reset() j.stderr.Reset() - // make cmd write to both standard output and output buffers for lua ccess + // make cmd write to both standard output and output buffers for lua access j.handle.Stdout = io.MultiWriter(j.cmdout, j.stdout) j.handle.Stderr = io.MultiWriter(j.cmderr, j.stderr)