From 34847e8f891108b7280ba6fe4d2fa7e95c7773d1 Mon Sep 17 00:00:00 2001 From: santos227 Date: Mon, 28 Feb 2022 18:50:07 +0900 Subject: [PATCH] examples/chat-tokio.rs: Fix typo (#2541) --- examples/chat-tokio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chat-tokio.rs b/examples/chat-tokio.rs index 47dbb434..2400c8a9 100644 --- a/examples/chat-tokio.rs +++ b/examples/chat-tokio.rs @@ -149,7 +149,7 @@ async fn main() -> Result<(), Box> { if let Some(to_dial) = std::env::args().nth(1) { let addr: Multiaddr = to_dial.parse()?; swarm.dial(addr)?; - println!("Dialed {:?}", to_dial) + println!("Dialed {:?}", to_dial); } // Read full lines from stdin