diff --git a/src/app/process_killer.rs b/src/app/process_killer.rs index 84b95242..73a68e82 100644 --- a/src/app/process_killer.rs +++ b/src/app/process_killer.rs @@ -59,8 +59,7 @@ pub fn kill_process_given_pid(pid: Pid) -> anyhow::Result<()> { /// Kills a process, given a PID, for UNIX. #[cfg(target_family = "unix")] pub fn kill_process_given_pid(pid: Pid, signal: usize) -> anyhow::Result<()> { - // SAFETY: the signal should be valid, and we act properly on an error (exit - // code not 0). + // SAFETY: the signal should be valid, and we act properly on an error (exit code not 0). let output = unsafe { libc::kill(pid, signal as i32) }; if output != 0 {