summaryrefslogtreecommitdiffstats
path: root/tokio/src/process
diff options
context:
space:
mode:
authorGeoff Shannon <geoffpshannon@gmail.com>2019-10-27 09:37:07 -0700
committerIvan Petkov <ivanppetkov@gmail.com>2019-10-27 09:37:07 -0700
commit11952635840298d307dc10b26e6bdc78188c84ef (patch)
tree3e7c86a803a0e19d8e44304234792e993b758732 /tokio/src/process
parentbccb713d98de225aa3f882bae8c05991ed13a212 (diff)
Fix docs links: Redux (#1698)
Diffstat (limited to 'tokio/src/process')
-rw-r--r--tokio/src/process/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokio/src/process/mod.rs b/tokio/src/process/mod.rs
index 14ffd20e..45bd23fd 100644
--- a/tokio/src/process/mod.rs
+++ b/tokio/src/process/mod.rs
@@ -1,6 +1,6 @@
//! An implementation of asynchronous process management for Tokio.
//!
-//! This module provides a [`Command`](crate::process::Command) struct that imitates the interface of the
+//! This module provides a [`Command`] struct that imitates the interface of the
//! [`std::process::Command`] type in the standard library, but provides asynchronous versions of
//! functions that create processes. These functions (`spawn`, `status`, `output` and their
//! variants) return "future aware" types that interoperate with Tokio. The asynchronous process
@@ -102,7 +102,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`](crate::process::Child) is a
+//! is dropped. In this crate, however, because [`tokio::process::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.