From 43854b9a8ea15c6307a34700cf1136251fc3a948 Mon Sep 17 00:00:00 2001 From: luben karavelov 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), 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`), but usually a `BytesMut` is used first and written to. For //! example: //! //! ```rust