From bc1b65806027cf9aed2e71daac845b7311cfc235 Mon Sep 17 00:00:00 2001 From: Steven Hepting Date: Tue, 3 Jun 2025 11:04:14 -0600 Subject: [PATCH] Fix comment typos from tests. --- Tests/SubprocessTests/SubprocessTests+Darwin.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/SubprocessTests/SubprocessTests+Darwin.swift b/Tests/SubprocessTests/SubprocessTests+Darwin.swift index 2ac21bc..a1ef828 100644 --- a/Tests/SubprocessTests/SubprocessTests+Darwin.swift +++ b/Tests/SubprocessTests/SubprocessTests+Darwin.swift @@ -38,8 +38,8 @@ struct SubprocessDarwinTests { posix_spawnattr_getflags(&spawnAttr, &flags) posix_spawnattr_setflags(&spawnAttr, flags | Int16(POSIX_SPAWN_SETSID)) } - // Check the proces ID (pid), pross group ID (pgid), and - // controling terminal's process group ID (tpgid) + // Check the process ID (pid), process group ID (pgid), and + // controlling terminal's process group ID (tpgid) let psResult = try await Subprocess.run( .path("/bin/bash"), arguments: ["-c", "ps -o pid,pgid,tpgid -p $$"],