about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorMichael Gattozzi <mgattozzi@gmail.com>2017-04-19 14:00:50 -0400
committerMichael Gattozzi <mgattozzi@gmail.com>2017-04-19 14:00:50 -0400
commitdf383b95476d59c26e822bcda69d3255da61622c (patch)
treedd7dcd2a3d54e49078ed93e1924c48c7714d6e0a /src/libstd/process.rs
parent7ef1b39b2525dc5475f86b6dc27aa60fe5b3fdca (diff)
downloadrust-df383b95476d59c26e822bcda69d3255da61622c.tar.gz
rust-df383b95476d59c26e822bcda69d3255da61622c.zip
Fix link for wait
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 edcf206501a..9d7f87f06c3 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -78,7 +78,7 @@ use sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
 /// run, even after the `Child` handle to the child process has gone out of
 /// scope.
 ///
-/// Calling [`wait`] (or other functions that wrap around it) will make
+/// Calling [`wait`](#method.wait) (or other functions that wrap around it) will make
 /// the parent process wait until the child has actually exited before
 /// continuing.
 ///