Put type names in backticks. (#212)

I noticed that the bare `[u8]` made rustdoc nightly unhappy.
This commit is contained in:
Geoffry Song
2018-07-12 19:05:02 -07:00
committed by Carl Lerche
parent 83f68a013e
commit 1ba5266bd9
+2 -2
View File
@@ -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