From 1ccbbf19250e8a7f76131f061f271dfa8bd8d680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janosch=20Gr=C3=A4f?= Date: Mon, 10 Jun 2024 00:27:57 +0200 Subject: [PATCH] missing semicolon --- examples/hello_world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello_world.rs b/examples/hello_world.rs index c82604e..1ef89ab 100644 --- a/examples/hello_world.rs +++ b/examples/hello_world.rs @@ -24,7 +24,7 @@ async fn main() -> Result<(), Error> { while let Some(message) = rx.try_next().await? { if let Message::Text(text) = message { - println!("received: {text}") + println!("received: {text}"); } }