From 94af9c32628ac1aefe63a75e3980d3934234000a Mon Sep 17 00:00:00 2001 From: K-tecchan <67850755+K-tecchan@users.noreply.github.com> Date: Sat, 13 Sep 2025 23:27:43 +0900 Subject: [PATCH] axum: correct typo in append_allow_header (#3476) --- axum/src/routing/method_routing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/routing/method_routing.rs b/axum/src/routing/method_routing.rs index c4ad4a07..1ab10db5 100644 --- a/axum/src/routing/method_routing.rs +++ b/axum/src/routing/method_routing.rs @@ -1188,7 +1188,7 @@ fn append_allow_header(allow_header: &mut AllowHeader, method: &'static str) { } } else { #[cfg(debug_assertions)] - panic!("`allow_header` contained invalid uft-8. This should never happen") + panic!("`allow_header` contained invalid utf-8. This should never happen") } } }