Skip to content

Commit

Permalink
Link to modules instead of traits
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Apr 10, 2021
1 parent e0d378f commit 071a434
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions futures/src/lib.rs
Expand Up @@ -3,12 +3,12 @@
//! This crate provides a number of core abstractions for writing asynchronous
//! code:
//!
//! - [Futures](crate::future::Future) are single eventual values produced by
//! - [Futures](crate::future) are single eventual values produced by
//! asynchronous computations. Some programming languages (e.g. JavaScript)
//! call this concept "promise".
//! - [Streams](crate::stream::Stream) represent a series of values
//! - [Streams](crate::stream) represent a series of values
//! produced asynchronously.
//! - [Sinks](crate::sink::Sink) provide support for asynchronous writing of
//! - [Sinks](crate::sink) provide support for asynchronous writing of
//! data.
//! - [Executors](crate::executor) are responsible for running asynchronous
//! tasks.
Expand Down

0 comments on commit 071a434

Please sign in to comment.