From 4de5ee70d5e41fde50cc33f98f86669dcb8cdb0d Mon Sep 17 00:00:00 2001 From: Shashwat Pragya Date: Tue, 26 May 2026 01:05:11 +0100 Subject: [PATCH] docs: fix typo in ExecProcess comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo in ExecProcess doc comment: "exists" → "exits" Co-Authored-By: Claude --- exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec.go b/exec.go index e8af5c42fe..c4fce106c0 100644 --- a/exec.go +++ b/exec.go @@ -26,7 +26,7 @@ func Exec(c ExecCommand, fn ExecCallback) Cmd { } // ExecProcess runs the given *exec.Cmd in a blocking fashion, effectively -// pausing the Program while the command is running. After the *exec.Cmd exists +// pausing the Program while the command is running. After the *exec.Cmd exits // the Program resumes. It's useful for spawning other interactive applications // such as editors and shells from within a Program. //