From 81dea8ce3ed35ddf401fbc6731b8ab3f23ccdd13 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 24 Apr 2025 08:47:29 +0200 Subject: [PATCH] Add a missing semicolon --- axum/src/routing/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/routing/mod.rs b/axum/src/routing/mod.rs index 7da58a16..910d6768 100644 --- a/axum/src/routing/mod.rs +++ b/axum/src/routing/mod.rs @@ -377,7 +377,7 @@ where { tap_inner!(self, mut this => { this.path_router - .method_not_allowed_fallback(handler.clone()) + .method_not_allowed_fallback(handler.clone()); }) }