From 353e5cabb8740ff90f928e447a54e70f66fff5be Mon Sep 17 00:00:00 2001 From: Lencerf Date: Tue, 27 Dec 2022 07:50:12 -0800 Subject: [PATCH] process: fix typo in `process::imp::Pipe` comment (#5314) Signed-off-by: Changyuan Lyu --- tokio/src/process/unix/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/process/unix/mod.rs b/tokio/src/process/unix/mod.rs index 0345083dc09..78c792cc765 100644 --- a/tokio/src/process/unix/mod.rs +++ b/tokio/src/process/unix/mod.rs @@ -156,7 +156,7 @@ impl Future for Child { #[derive(Debug)] pub(crate) struct Pipe { - // Actually a pipe and not a File. However, we are reusing `File` to get + // Actually a pipe is not a File. However, we are reusing `File` to get // close on drop. This is a similar trick as `mio`. fd: File, }