about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorGuanqun Lu <guanqun.lu@gmail.com>2019-09-13 17:36:35 +0800
committerGuanqun Lu <guanqun.lu@gmail.com>2019-09-15 23:15:06 +0800
commit5355a16150a89503b67edbb3da545f8d653a4126 (patch)
tree2231c10391589c28cad871a611943e8a5703a208 /src/libstd/process.rs
parent117cdf35d46cb4dbb246e300a492c860a86233be (diff)
downloadrust-5355a16150a89503b67edbb3da545f8d653a4126.tar.gz
rust-5355a16150a89503b67edbb3da545f8d653a4126.zip
use println!()
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 c50025ab7d1..b8d57cfafea 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -422,7 +422,7 @@ impl fmt::Debug for ChildStderr {
 /// // Execute `ls` in the current directory of the program.
 /// list_dir.status().expect("process failed to execute");
 ///
-/// println!("");
+/// println!();
 ///
 /// // Change `ls` to execute in the root directory.
 /// list_dir.current_dir("/");