summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-02-27 18:04:13 -0500
committerJesse Luehrs <doy@tozt.net>2022-02-27 18:04:13 -0500
commit52671503d08d2e3378a9289d2994b51560b796a9 (patch)
tree9c239631d061f70aaf25d22841b390c6291b2cea /src
parent7d406ef5017311397d25c2a238aea3e0d9e8946b (diff)
downloadnbsh-52671503d08d2e3378a9289d2994b51560b796a9.tar.gz
nbsh-52671503d08d2e3378a9289d2994b51560b796a9.zip
fix one more comment
Diffstat (limited to 'src')
-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,