From 6414efe83ba7cff40bd9e304a07f58023e16251b Mon Sep 17 00:00:00 2001 From: luben karavelov <luben@amazon.com> Date: Mon, 2 Jul 2018 20:10:16 +0100 Subject: [PATCH] Fix documentation (#219) --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 92702c9..4f77c09 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 -- GitLab