fix doc links

This commit is contained in:
Pen Tree 2020-06-03 07:02:33 +08:00
parent f3cb6efc30
commit 7bf411c3ab
1 changed files with 5 additions and 3 deletions

View File

@ -2,10 +2,12 @@
//! //!
//! Contains adapters to go from streams of bytes, [`AsyncRead`] and //! Contains adapters to go from streams of bytes, [`AsyncRead`] and
//! [`AsyncWrite`], to framed streams implementing [`Sink`] and [`Stream`]. //! [`AsyncWrite`], to framed streams implementing [`Sink`] and [`Stream`].
//! Framed streams are also known as [transports]. //! Framed streams are also known as `transports`.
//! //!
//! [`AsyncRead`]: # //! [`AsyncRead`]: AsyncRead
//! [`AsyncWrite`]: # //! [`AsyncWrite`]: AsyncWrite
//! [`Sink`]: futures_sink::Sink
//! [`Stream`]: futures_core::Stream
#![deny(rust_2018_idioms, warnings)] #![deny(rust_2018_idioms, warnings)]
mod bcodec; mod bcodec;