Skip to content

Commit

Permalink
missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraef committed Jun 9, 2024
1 parent df55132 commit 1ccbbf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/hello_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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}");
}
}

Expand Down

0 comments on commit 1ccbbf1

Please sign in to comment.