From c8c0bb2ce15774eda37f80b27d320e73b7196cbe Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 10 Dec 2021 18:34:31 +0100 Subject: [PATCH] Fix a typo (#605) --- axum-core/src/response/headers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum-core/src/response/headers.rs b/axum-core/src/response/headers.rs index c314948f..56455481 100644 --- a/axum-core/src/response/headers.rs +++ b/axum-core/src/response/headers.rs @@ -49,7 +49,7 @@ use std::{convert::TryInto, fmt}; /// Server Error` response will be returned. /// /// You can also return `(Headers, impl IntoResponse)` to customize the headers -/// of a response, or `(StatusCode, Headeres, impl IntoResponse)` to customize +/// of a response, or `(StatusCode, Headers, impl IntoResponse)` to customize /// the status code and headers. #[derive(Clone, Copy, Debug)] pub struct Headers(pub H);