summaryrefslogtreecommitdiffstats
path: root/src/runner/command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runner/command.rs')
-rw-r--r--src/runner/command.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runner/command.rs b/src/runner/command.rs
index 4b21199..89bc27b 100644
--- a/src/runner/command.rs
+++ b/src/runner/command.rs
@@ -86,8 +86,8 @@ impl Command {
}
}
- // Safety: see pre_exec in async_std::os::unix::process::CommandExt (this
- // is just a wrapper)
+ // Safety: see pre_exec in tokio::process::Command (this is just a
+ // wrapper)
pub unsafe fn pre_exec<F>(&mut self, f: F)
where
F: 'static + FnMut() -> std::io::Result<()> + Send + Sync,