Skip to content

Commit 2a84026

Browse files
committed
Link to modules instead of traits
1 parent 99abfd3 commit 2a84026

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

futures/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
//! This crate provides a number of core abstractions for writing asynchronous
44
//! code:
55
//!
6-
//! - [Futures](crate::future::Future) are single eventual values produced by
6+
//! - [Futures](crate::future) are single eventual values produced by
77
//! asynchronous computations. Some programming languages (e.g. JavaScript)
88
//! call this concept "promise".
9-
//! - [Streams](crate::stream::Stream) represent a series of values
9+
//! - [Streams](crate::stream) represent a series of values
1010
//! produced asynchronously.
11-
//! - [Sinks](crate::sink::Sink) provide support for asynchronous writing of
11+
//! - [Sinks](crate::sink) provide support for asynchronous writing of
1212
//! data.
1313
//! - [Executors](crate::executor) are responsible for running asynchronous
1414
//! tasks.

0 commit comments

Comments
 (0)