1
Fork 0

Remove extra wait from Child docs

This commit is contained in:
Michael Gattozzi 2017-03-25 16:16:50 -04:00
parent bde6336976
commit 7ef1b39b25
No known key found for this signature in database
GPG key ID: 16E2FE8B38672F66

View file

@ -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.
///