From b2c34e7fe94a12a65083ac73759672427ea2ccbf Mon Sep 17 00:00:00 2001 From: peelz Date: Sat, 29 Mar 2025 10:45:54 -0400 Subject: Fix typo in comment --- src/utils/spawning.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/spawning.rs b/src/utils/spawning.rs index 38ac52e6..286df68f 100644 --- a/src/utils/spawning.rs +++ b/src/utils/spawning.rs @@ -244,7 +244,7 @@ mod systemd { close(fd); } - // Convert the our FDs to OwnedFd, which will close them in all of our fork paths. + // Convert the FDs to OwnedFd, which will close them in all of our fork paths. let pipe_pid_write = pipe_pid_write_fd.take().map(|fd| OwnedFd::from_raw_fd(fd)); let pipe_wait_read = pipe_wait_read_fd.take().map(|fd| OwnedFd::from_raw_fd(fd)); -- cgit