diff --git a/tokio/src/process/mod.rs b/tokio/src/process/mod.rs index 46c5f14add8..75d6a0f4204 100644 --- a/tokio/src/process/mod.rs +++ b/tokio/src/process/mod.rs @@ -1164,7 +1164,12 @@ impl Child { /// Forces the child to exit. /// - /// This is equivalent to sending a `SIGKILL` on unix platforms. + /// This is equivalent to sending a `SIGKILL` on unix platforms + /// followed by [`wait`](Child::wait). + /// + /// Note: std version of [`Child::kill`](std::process::Child::kill) does not `wait`. + /// For an equivalent of `Child::kill` in the standard library, + /// use [`start_kill`](Child::start_kill). /// /// # Examples ///