Fixes 2. stdout to stderr in rustdoc

This commit is contained in:
Lukas Pustina 2016-03-19 21:07:47 +01:00
parent aefbbc79a3
commit 45517947ba

View file

@ -503,7 +503,7 @@ impl Child {
/// By default, stdin, stdout and stderr are inherited from the parent.
/// In order to capture the output into this `Result<Output>` it is
/// necessary to create new pipes between parent and child. Use
/// `stdout(Stdio::piped())` or `stdout(Stdio::piped())`, respectively.
/// `stdout(Stdio::piped())` or `stderr(Stdio::piped())`, respectively.
///
/// # Examples
///