From 8bb30b96e9782209a06ee1d8ac04aa9a1b46bc83 Mon Sep 17 00:00:00 2001 From: Imani Pelton Date: Wed, 30 Oct 2024 11:07:00 -0400 Subject: [PATCH] fix(doc): correct small errors in pipes.md Fixes some minor language errors in documentation on pipes --- src/std_misc/process/pipe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/std_misc/process/pipe.md b/src/std_misc/process/pipe.md index 31d9318172..6403596f7a 100644 --- a/src/std_misc/process/pipe.md +++ b/src/std_misc/process/pipe.md @@ -1,6 +1,6 @@ # Pipes -The `std::Child` struct represents a running child process, and exposes the +The `std::process::Child` struct represents a child process, and exposes the `stdin`, `stdout` and `stderr` handles for interaction with the underlying process via pipes.