From 7152bce19203a2260147ae1ed84caa1d6de2ec40 Mon Sep 17 00:00:00 2001 From: abhijeetbhagat Date: Wed, 4 Jan 2017 14:39:16 +0530 Subject: [PATCH] Fix formatting --- src/libstd/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 7fb30847a9f..1a11d7ad9d7 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -260,7 +260,7 @@ impl fmt::Debug for ChildStderr { /// ``` /// 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()