summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/mod.rs
diff options
context:
space:
mode:
authorzeroed <zeroed@users.noreply.github.com>2020-05-08 01:26:09 +0200
committerGitHub <noreply@github.com>2020-05-07 16:26:09 -0700
commit8565a986018f4a442a7b71bba23c3b2f5de55604 (patch)
tree6cfa284e5a3e183c9365fe4c70ad4bea7ec18386 /tokio/src/sync/mod.rs
parentbff21aba6c1568f260fdf48d2eb3c0566e293f5a (diff)
docs: fix links in `tokio::sync` (#2491)
Fixes: #2489
Diffstat (limited to 'tokio/src/sync/mod.rs')
-rw-r--r--tokio/src/sync/mod.rs23
1 files changed, 14 insertions, 9 deletions
diff --git a/tokio/src/sync/mod.rs b/tokio/src/sync/mod.rs
index e558634f..933e903a 100644
--- a/tokio/src/sync/mod.rs
+++ b/tokio/src/sync/mod.rs
@@ -32,7 +32,7 @@
//! single producer to a single consumer. This channel is usually used to send
//! the result of a computation to a waiter.
//!
-//! **Example:** using a `oneshot` channel to receive the result of a
+//! **Example:** using a [`oneshot` channel][oneshot] to receive the result of a
//! computation.
//!
//! ```
@@ -232,7 +232,7 @@
//!
//! ## `broadcast` channel
//!
-//! The [`broadcast` channel][broadcast] supports sending **many** values from
+//! The [`broadcast` channel] supports sending **many** values from
//! **many** producers to **many** consumers. Each consumer will receive
//! **each** value. This channel can be used to implement "fan out" style
//! patterns common with pub / sub or "chat" systems.
@@ -265,12 +265,14 @@
//! }
//! ```
//!
+//! [`broadcast` channel]: crate::sync::broadcast
+//!
//! ## `watch` channel
//!
-//! The [`watch` channel][watch] supports sending **many** values from a
-//! **single** producer to **many** consumers. However, only the **most recent**
-//! value is stored in the channel. Consumers are notified when a new value is
-//! sent, but there is no guarantee that consumers will see **all** values.
+//! The [`watch` channel] supports sending **many** values from a **single**
+//! producer to **many** consumers. However, only the **most recent** value is
+//! stored in the channel. Consumers are notified when a new value is sent, but
+//! there is no guarantee that consumers will see **all** values.
//!
//! The [`watch` channel] is similar to a [`broadcast` channel] with capacity 1.
//!
@@ -278,9 +280,9 @@
//! changes or signalling program state changes, such as transitioning to
//! shutdown.
//!
-//! **Example:** use a `watch` channel to notify tasks of configuration changes.
-//! In this example, a configuration file is checked periodically. When the file
-//! changes, the configuration changes are signalled to consumers.
+//! **Example:** use a [`watch` channel] to notify tasks of configuration
+//! changes. In this example, a configuration file is checked periodically. When
+//! the file changes, the configuration changes are signalled to consumers.
//!
//! ```
//! use tokio::sync::watch;
@@ -393,6 +395,9 @@
//! }
//! ```
//!
+//! [`watch` channel]: crate::sync::watch
+//! [`broadcast` channel]: crate::sync::broadcast
+//!
//! # State synchronization
//!
//! The remaining synchronization primitives focus on synchronizing state.