1
Fork 0

Rollup merge of #34033 - tshepang:typo, r=GuillaumeGomez

doc: typo
This commit is contained in:
Guillaume Gomez 2016-06-02 13:47:08 +02:00
commit 7399403f38

View file

@ -195,7 +195,7 @@ impl FromInner<AnonPipe> for ChildStderr {
/// .arg("-c")
/// .arg("echo hello")
/// .output()
/// .expect("failed to execute proces");
/// .expect("failed to execute process");
///
/// let hello = output.stdout;
/// ```