From 6610ee6dc1f41af0e20da81eeec74afad8fa0145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 11 Jul 2023 16:54:57 +0200 Subject: [PATCH] Fix log typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- src/executor/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/executor/mod.rs b/src/executor/mod.rs index 481af05f8d..5cb02614a3 100644 --- a/src/executor/mod.rs +++ b/src/executor/mod.rs @@ -95,7 +95,7 @@ async fn network_run() { } pub(crate) fn init() { - info!("Try to nitialize network!"); + info!("Try to initialize network!"); // initialize variable, which contains the next local endpoint LOCAL_ENDPOINT.store(start_endpoint(), Ordering::Relaxed);