Skip to content

Commit 4551794

Browse files
committed
Fixes 2. stdout to stderr in rustdoc
1 parent aefbbc7 commit 4551794

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ impl Child {
503503
/// By default, stdin, stdout and stderr are inherited from the parent.
504504
/// In order to capture the output into this `Result<Output>` it is
505505
/// necessary to create new pipes between parent and child. Use
506-
/// `stdout(Stdio::piped())` or `stdout(Stdio::piped())`, respectively.
506+
/// `stdout(Stdio::piped())` or `stderr(Stdio::piped())`, respectively.
507507
///
508508
/// # Examples
509509
///

0 commit comments

Comments
 (0)