Skip to content

Commit fd31d61

Browse files
authored
examples/chat-tokio.rs: Fix typo (#2541)
1 parent e2fcc47 commit fd31d61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/chat-tokio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
149149
if let Some(to_dial) = std::env::args().nth(1) {
150150
let addr: Multiaddr = to_dial.parse()?;
151151
swarm.dial(addr)?;
152-
println!("Dialed {:?}", to_dial)
152+
println!("Dialed {:?}", to_dial);
153153
}
154154

155155
// Read full lines from stdin

0 commit comments

Comments
 (0)