Skip to content

Commit

Permalink
examples/chat-tokio.rs: Fix typo (#2541)
Browse files Browse the repository at this point in the history
  • Loading branch information
Karatuss authored Feb 28, 2022
1 parent e2fcc47 commit fd31d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chat-tokio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
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
Expand Down

0 comments on commit fd31d61

Please sign in to comment.