From 0f4f0fb77e1bee5b51409f0d25312a1581cb6339 Mon Sep 17 00:00:00 2001 From: Stjepan Glavina Date: Wed, 11 Sep 2019 17:29:33 +0200 Subject: [PATCH] Fix a typo --- docs/src/tutorial/handling_disconnection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorial/handling_disconnection.md b/docs/src/tutorial/handling_disconnection.md index 82bbef5a..27c50523 100644 --- a/docs/src/tutorial/handling_disconnection.md +++ b/docs/src/tutorial/handling_disconnection.md @@ -258,7 +258,7 @@ async fn broker(events: Receiver) { for addr in to { if let Some(peer) = peers.get_mut(&addr) { let msg = format!("from {}: {}\n", from, msg); - peer.send(fmt).await + peer.send(msg).await .unwrap() // 6 } }