From 025144be7e500e498b036bee8ca8c0489c235622 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 1 Aug 2023 00:27:20 +0900 Subject: [PATCH] Fix typo in typed_header.rs (#2133) --- axum-extra/src/typed_header.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum-extra/src/typed_header.rs b/axum-extra/src/typed_header.rs index 4c0e4720..814b1a68 100644 --- a/axum-extra/src/typed_header.rs +++ b/axum-extra/src/typed_header.rs @@ -132,7 +132,7 @@ impl TypedHeaderRejection { pub enum TypedHeaderRejectionReason { /// The header was missing from the HTTP request Missing, - /// An error occured when parsing the header from the HTTP request + /// An error occurred when parsing the header from the HTTP request Error(headers::Error), }