summaryrefslogtreecommitdiffstats
path: root/tokio/src/process
diff options
context:
space:
mode:
authorPen Tree <appletree2479@outlook.com>2019-11-21 04:24:17 +0800
committerEliza Weisman <eliza@buoyant.io>2019-11-20 12:24:17 -0800
commitbc150cd0b56cf6dcb7c4feab64e83b9938faa186 (patch)
treec3038169ab75c7cc16d7a2d9bded7cf015e681c0 /tokio/src/process
parent15dce2d11ad849e25f0336f09fdb1cca7e405a9e (diff)
Fix doc links (#1799)
Link fix only. After this fix, `cargo doc --package` succeeds.
Diffstat (limited to 'tokio/src/process')
-rw-r--r--tokio/src/process/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/process/mod.rs b/tokio/src/process/mod.rs
index ee43a9fb..63d6f19e 100644
--- a/tokio/src/process/mod.rs
+++ b/tokio/src/process/mod.rs
@@ -101,7 +101,7 @@
//! While similar to the standard library, this crate's `Child` type differs
//! importantly in the behavior of `drop`. In the standard library, a child
//! process will continue running after the instance of [`std::process::Child`]
-//! is dropped. In this crate, however, because [`tokio::process::Child`] is a
+//! is dropped. In this crate, however, because [`tokio::process::Child`][Child] is a
//! future of the child's `ExitStatus`, a child process is terminated if
//! `tokio::process::Child` is dropped. The behavior of the standard library can
//! be regained with the [`Child::forget`](crate::process::Child::forget) method.