Add missing colon.

This commit is contained in:
Thayne McCombs 2017-10-07 00:55:58 -06:00
parent 6ff6b93560
commit ba7575886e

View File

@ -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());
/// ```