about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorBryan Tan <Technius@users.noreply.github.com>2017-10-14 20:41:58 -0700
committerGitHub <noreply@github.com>2017-10-14 20:41:58 -0700
commite788e90bad6b1ee5c028d5536c373c3f2c8a3bc4 (patch)
treef5856a2add41e434fe94394e1ca54a5d4067e9c1 /src/libstd/process.rs
parent5243a98b48da3bdac81e9685526d731e88dc48a1 (diff)
downloadrust-e788e90bad6b1ee5c028d5536c373c3f2c8a3bc4.tar.gz
rust-e788e90bad6b1ee5c028d5536c373c3f2c8a3bc4.zip
Fixed accidental deletion of colon
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 d3e60e3dff9..5428ed59c68 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -19,7 +19,7 @@
 //! Hello world, `std::process` edition:
 //!
 //! ```
-//! use std::process:Command;
+//! use std::process::Command;
 //!
 //! // Note that by default, the output of the command will be sent to stdout
 //! let child = Command::new("echo")