diff options
| author | Bryan Tan <Technius@users.noreply.github.com> | 2017-10-14 20:41:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-14 20:41:58 -0700 |
| commit | e788e90bad6b1ee5c028d5536c373c3f2c8a3bc4 (patch) | |
| tree | f5856a2add41e434fe94394e1ca54a5d4067e9c1 /src/libstd/process.rs | |
| parent | 5243a98b48da3bdac81e9685526d731e88dc48a1 (diff) | |
| download | rust-e788e90bad6b1ee5c028d5536c373c3f2c8a3bc4.tar.gz rust-e788e90bad6b1ee5c028d5536c373c3f2c8a3bc4.zip | |
Fixed accidental deletion of colon
Diffstat (limited to 'src/libstd/process.rs')
| -rw-r--r-- | src/libstd/process.rs | 2 |
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") |
