diff --git a/src/lib.rs b/src/lib.rs index 92702c91e87bc0c6e7c8a48227d894eb79679854..4f77c09b9dd1ea13597153a97c4347bf901d9f9d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,8 +18,8 @@ //! using a reference count to track when the memory is no longer needed and can //! be freed. //! -//! A `Bytes` handle can be created directly from an existing byte store (such as &[u8] -//! or Vec<u8>), but usually a `BytesMut` is used first and written to. For +//! A `Bytes` handle can be created directly from an existing byte store (such as `&[u8]` +//! or `Vec<u8>`), but usually a `BytesMut` is used first and written to. For //! example: //! //! ```rust