From 46f9c2147a785808e85662bf09f973dac85775c8 Mon Sep 17 00:00:00 2001 From: Steven Hepting Date: Tue, 3 Jun 2025 14:35:38 -0600 Subject: [PATCH] Update comment typos --- Sources/Subprocess/API.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/Subprocess/API.swift b/Sources/Subprocess/API.swift index e32636bf..ea458dba 100644 --- a/Sources/Subprocess/API.swift +++ b/Sources/Subprocess/API.swift @@ -17,7 +17,7 @@ // MARK: - Collected Result -/// Run a executable with given parameters asynchrously and returns +/// Run an executable with given parameters asynchronously and returns /// a `CollectedResult` containing the output of the child process. /// - Parameters: /// - executable: The executable to run. @@ -62,7 +62,7 @@ public func run< ) } -/// Run a executable with given parameters asynchrously and returns +/// Run an executable with given parameters asynchronously and returns /// a `CollectedResult` containing the output of the child process. /// - Parameters: /// - executable: The executable to run. @@ -142,7 +142,7 @@ public func run< // MARK: - Custom Execution Body -/// Run a executable with given parameters and a custom closure +/// Run an executable with given parameters and a custom closure /// to manage the running subprocess' lifetime and its IOs. /// - Parameters: /// - executable: The executable to run.