From e7b593cbee9541500cef047f3a0ee70be1c55c6f Mon Sep 17 00:00:00 2001 From: Jonathan Hiles Date: Mon, 3 Mar 2025 19:31:35 +1000 Subject: [PATCH] process: fix grammar of the `ChildStdin` struct doc comment (#7192) --- tokio/src/process/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/process/mod.rs b/tokio/src/process/mod.rs index 28cbf66a8..46c5f14ad 100644 --- a/tokio/src/process/mod.rs +++ b/tokio/src/process/mod.rs @@ -1382,7 +1382,7 @@ impl Child { /// The standard input stream for spawned children. /// -/// This type implements the `AsyncWrite` trait to pass data to the stdin handle of +/// This type implements the `AsyncWrite` trait to pass data to the stdin /// handle of a child process asynchronously. #[derive(Debug)] pub struct ChildStdin {