about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorThayne McCombs <astrothayne@gmail.com>2017-10-07 00:55:58 -0600
committerThayne McCombs <astrothayne@gmail.com>2017-10-07 00:55:58 -0600
commitba7575886e6a294b8185f51a1701574f72abe5a8 (patch)
tree1c2b976b9fdc82d47a658daf17cce4f68c66a13a /src/libstd
parent6ff6b935608f7c5b6b53517f3fc5bafec911a79d (diff)
downloadrust-ba7575886e6a294b8185f51a1701574f72abe5a8.tar.gz
rust-ba7575886e6a294b8185f51a1701574f72abe5a8.zip
Add missing colon.
Diffstat (limited to 'src/libstd')
-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 38035e1fa6b..711d8df1b60 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -1174,7 +1174,7 @@ pub fn abort() -> ! {
 /// Basic usage:
 ///
 /// ```no_run
-/// use std::process:current_pid;
+/// use std::process::current_pid;
 ///
 /// println!("My pid is {}", current_pid());
 /// ```