We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f5859 commit dd2749cCopy full SHA for dd2749c
docs/src/tutorial/all_together.md
@@ -124,8 +124,8 @@ async fn broker_loop(mut events: Receiver<Event>) -> Result<()> {
124
Entry::Occupied(..) => (),
125
Entry::Vacant(entry) => {
126
let (client_sender, client_receiver) = mpsc::unbounded();
127
- entry.insert(client_sender); // 4
128
- spawn_and_log_error(connection_writer_loop(client_receiver, stream)); // 5
+ entry.insert(client_sender);
+ spawn_and_log_error(connection_writer_loop(client_receiver, stream));
129
}
130
131
0 commit comments