File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments