From e93629bd4ca8a4d420a3beb7ba045dc33a03570a Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 21:09:51 -0700 Subject: [PATCH] http/body: fix 'recieved' -> 'received' in doc comment Doc comment in src/http/body.rs line 176 read 'recieved in the incoming request'. Fixed to 'received'. Comment-only change. Signed-off-by: SAY-5 --- src/http/body.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/body.rs b/src/http/body.rs index c23a3c0..97b093c 100644 --- a/src/http/body.rs +++ b/src/http/body.rs @@ -173,7 +173,7 @@ impl Body { /// Get a value for the length of this `Body`'s content, in bytes, if /// known. This value can come from either the Content-Length header - /// recieved in the incoming request or response assocated with the body, + /// received in the incoming request or response assocated with the body, /// or be provided by an exact `http_body::Body::size_hint` if the `Body` /// is constructed from an `http_body::Body` impl. pub fn content_length(&self) -> Option {