Fix formatting

This commit is contained in:
abhijeetbhagat 2017-01-04 14:39:16 +05:30
parent e1e6a7aa7a
commit 7152bce192

View File

@ -260,7 +260,7 @@ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
/// ```
/// use std::process::Command;
///
/// let output = if cfg!(target_os = "windows"){
/// let output = if cfg!(target_os = "windows") {
/// Command::new("cmd")
/// .args(&["/C", "echo hello"])
/// .output()