about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorHavvy (Ryan Scheel) <ryan.havvy@gmail.com>2018-08-11 13:02:49 -0700
committerHavvy (Ryan Scheel) <ryan.havvy@gmail.com>2018-08-11 13:02:49 -0700
commit0070b46626407f2e815993d46aef2b2637c2a4ed (patch)
tree36dbf3682f59942481d82d9b588bae0688dcc2db /src/libstd/process.rs
parent53d308fdf86b7e499811650b89789c9c7161faab (diff)
downloadrust-0070b46626407f2e815993d46aef2b2637c2a4ed.tar.gz
rust-0070b46626407f2e815993d46aef2b2637c2a4ed.zip
Fix indent
Diffstat (limited to 'src/libstd/process.rs')
-rw-r--r--src/libstd/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index ad64ed66e8e..53babd449a9 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -390,7 +390,7 @@ impl fmt::Debug for ChildStderr {
 ///
 /// let mut echo_hello = Command::new("sh");
 /// echo_hello.arg("-c")
-///            .arg("echo hello");
+///           .arg("echo hello");
 /// let hello_1 = echo_hello.output().expect("failed to execute process");
 /// let hello_2 = echo_hello.output().expect("failed to execute process");
 /// ```