Fix std::process hello world example

This commit is contained in:
Bryan Tan 2017-10-15 13:11:14 -07:00
parent e788e90bad
commit bb74b13b74

View file

@ -22,7 +22,7 @@
//! use std::process::Command;
//!
//! // Note that by default, the output of the command will be sent to stdout
//! let child = Command::new("echo")
//! let mut child = Command::new("echo")
//! .arg("Hello world")
//! .spawn()
//! .expect("Failed to start process");