From e5a4d5b6994ec839aac2e613018fd11a5a9bf2dc Mon Sep 17 00:00:00 2001 From: Vlad-Shcherbina Date: Wed, 2 Sep 2020 14:40:13 +0300 Subject: [PATCH] Fix typo --- src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/response.rs b/src/response.rs index b16d0c6a4..4eaf29a3e 100644 --- a/src/response.rs +++ b/src/response.rs @@ -373,7 +373,7 @@ where // checking whether to ignore the body of the response let do_not_send_body = do_not_send_body || match self.status_code.0 { - // sattus code 1xx, 204 and 304 MUST not include a body + // status code 1xx, 204 and 304 MUST not include a body 100..=199 | 204 | 304 => true, _ => false, };