Merge pull request #756 from shepmaster/patch-2

Add missing close backtick
This commit is contained in:
Oliver Schneider 2017-02-09 18:01:35 +01:00 committed by GitHub
commit 4dba260ad7

View File

@ -859,7 +859,7 @@ pub trait Deserializer: Sized {
/// benefit from taking ownership of buffered data owned by the
/// `Deserializer`.
///
/// If the `Visitor would benefit from taking ownership of `Vec<u8>` data,
/// If the `Visitor` would benefit from taking ownership of `Vec<u8>` data,
/// indicate this to the `Deserializer` by using `deserialize_byte_buf`
/// instead.
fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error>