about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorMichael Gattozzi <mgattozzi@gmail.com>2017-03-25 16:16:50 -0400
committerMichael Gattozzi <mgattozzi@gmail.com>2017-03-25 16:16:50 -0400
commit7ef1b39b2525dc5475f86b6dc27aa60fe5b3fdca (patch)
treef0f0a923382d1831c7821855d0e14a9113e90d8b /src/libstd/process.rs
parentbde6336976f9a660fb9b14b89316ade85837fe44 (diff)
downloadrust-7ef1b39b2525dc5475f86b6dc27aa60fe5b3fdca.tar.gz
rust-7ef1b39b2525dc5475f86b6dc27aa60fe5b3fdca.zip
Remove extra wait from Child docs
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 293c8501400..edcf206501a 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`][`wait`] (or other functions that wrap around it) will make
+/// Calling [`wait`] (or other functions that wrap around it) will make
 /// the parent process wait until the child has actually exited before
 /// continuing.
 ///