From 78e8da17cf8737720b452f3077a2de90184f9b95 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 6 Dec 2019 15:41:35 -0800 Subject: [PATCH] docs(body): small wording improvement to body module docs --- src/body/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/body/mod.rs b/src/body/mod.rs index 0d8d3586..c6f4ea84 100644 --- a/src/body/mod.rs +++ b/src/body/mod.rs @@ -7,10 +7,10 @@ //! //! There are two pieces to this in hyper: //! -//! - The [`HttpBody`](body::HttpBody) trait the describes all possible bodies. +//! - **The [`HttpBody`](body::HttpBody) trait** describes all possible bodies. //! hyper allows any body type that implements `HttpBody`, allowing //! applications to have fine-grained control over their streaming. -//! - The [`Body`](Body) concrete type, which is an implementation of +//! - **The [`Body`](Body) concrete type**, which is an implementation of //! `HttpBody`, and returned by hyper as a "receive stream" (so, for server //! requests and client responses). It is also a decent default implementation //! if you don't have very custom needs of your send streams.