From e2edb31e65f5ed11d0db71d583c2d7fab0b3cb92 Mon Sep 17 00:00:00 2001 From: 29 <791603901@qq.com> Date: Sat, 7 Dec 2024 12:06:34 +0800 Subject: [PATCH] update doc comment Co-authored-by: Alice Ryhl --- tokio/src/process/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tokio/src/process/mod.rs b/tokio/src/process/mod.rs index 8c4fe8025aa..8ca4818362a 100644 --- a/tokio/src/process/mod.rs +++ b/tokio/src/process/mod.rs @@ -332,8 +332,9 @@ impl Command { /// Cheaply convert into a `std::process::Command`. /// - /// Note that Tokio specific options (currently only option [`kill_on_drop`](Command::kill_on_drop)) - /// will be lost. + /// Note that Tokio specific options will be lost. Currently, this only applies to [`kill_on_drop`]. + /// + /// [`kill_on_drop`]: Command::kill_on_drop pub fn into_std(self) -> StdCommand { self.std }