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, };