process: fix typo in process::imp::Pipe comment (#5314)

Signed-off-by: Changyuan Lyu <[email protected]>
This commit is contained in:
Lencerf
2022-12-27 15:50:12 +00:00
committed by GitHub
parent 8d58dc85b5
commit 353e5cabb8
+1 -1
View File
@@ -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,
}