From f612a3e22d8292718b09eb6644534a904fa03b8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20R=C3=A5gstad?= Date: Sun, 15 Oct 2023 16:39:35 +0200 Subject: [PATCH] Update runtime.rs --- src/engine/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/runtime.rs b/src/engine/runtime.rs index 2a80cd2..5c4f438 100644 --- a/src/engine/runtime.rs +++ b/src/engine/runtime.rs @@ -177,7 +177,7 @@ impl WXRuntime { if self.mode == WXMode::Dev { // Print the route map in dev mode. info(self.mode, "Route map:"); - let mut routes: Vec<(&Method, &WXUrlPath)> = self + let routes: Vec<(&Method, &WXUrlPath)> = self .routes .0 .iter()