docs(headers): fix >-quote formatting

'>'s as non-first characters are just '>'s (rustfmt probably broke the
line)
This commit is contained in:
nabijaczleweli
2017-10-15 15:00:49 +02:00
parent 8ac1179d7c
commit d48ab9601b
3 changed files with 2 additions and 3 deletions

View File

@@ -200,7 +200,7 @@ pub fn from_wire<B>(incoming: ResponseHead, body: Option<B>) -> Response<B> {
}
}
/// Splits this response into a MessageHead<StatusCode> and its body
/// Splits this response into a `MessageHead<StatusCode>` and its body
#[inline]
pub fn split<B>(res: Response<B>) -> (MessageHead<StatusCode>, Option<B>) {
let head = MessageHead::<StatusCode> {