From 57f5605f3f219c3f84aae332b754c9d750019eff Mon Sep 17 00:00:00 2001 From: niwa-s <67670677+niwa-s@users.noreply.github.com> Date: Mon, 7 Mar 2022 22:22:18 +0900 Subject: [PATCH] fix typo for websockets/chat-tcp/client.rs (#535) --- websockets/chat-tcp/src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websockets/chat-tcp/src/client.rs b/websockets/chat-tcp/src/client.rs index b5c3951e..0ea94b3c 100644 --- a/websockets/chat-tcp/src/client.rs +++ b/websockets/chat-tcp/src/client.rs @@ -49,7 +49,7 @@ async fn main() { Ok(codec::ChatResponse::Rooms(rooms)) => { println!("!!! Available rooms:"); for room in rooms { - println!("{}", room); + println!("{}", room); } }