From 3bbc6323441630515dad79a02b7fc62232eb33be Mon Sep 17 00:00:00 2001 From: Adam Badawy Date: Tue, 1 Dec 2015 23:12:01 -0500 Subject: [PATCH] Fix typo in src/libstd/process.rs --- src/libstd/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 40803a4bbd6a8..91c3819307ffe 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -531,7 +531,7 @@ impl Child { } /// Simultaneously waits for the child to exit and collect all remaining - /// output on the stdout/stderr handles, returning a `Output` + /// output on the stdout/stderr handles, returning an `Output` /// instance. /// /// The stdin handle to the child process, if any, will be closed