From ea48891d19a2d19375c657fc6eb17e865c1fd10b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Nov 2024 01:12:18 +0000 Subject: [PATCH] [BOT] Updating 1f265fa3564ae8090c6b2c1e71e59986663f7246 content --- rustbook-en/src/std_misc/process/pipe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustbook-en/src/std_misc/process/pipe.md b/rustbook-en/src/std_misc/process/pipe.md index 31d9318..6403596 100644 --- a/rustbook-en/src/std_misc/process/pipe.md +++ b/rustbook-en/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.