1
0
mirror of https://github.com/actix/examples synced 2025-03-30 07:26:21 +02:00

fix typo for websockets/chat-tcp/client.rs ()

This commit is contained in:
niwa-s 2022-03-07 22:22:18 +09:00 committed by GitHub
parent c0ac2834d5
commit 57f5605f3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -49,7 +49,7 @@ async fn main() {
Ok(codec::ChatResponse::Rooms(rooms)) => { Ok(codec::ChatResponse::Rooms(rooms)) => {
println!("!!! Available rooms:"); println!("!!! Available rooms:");
for room in rooms { for room in rooms {
println!("{}", room); println!("{}", room);
} }
} }