We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c56b6a1 + dd2749c commit dc7d520Copy full SHA for dc7d520
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