Skip to content

Commit dc7d520

Browse files
authored
Merge pull request #989 from hayaoR/fixtutorial
Remove the numbering of the remaining previous chapters
2 parents c56b6a1 + dd2749c commit dc7d520

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/tutorial/all_together.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ async fn broker_loop(mut events: Receiver<Event>) -> Result<()> {
124124
Entry::Occupied(..) => (),
125125
Entry::Vacant(entry) => {
126126
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
127+
entry.insert(client_sender);
128+
spawn_and_log_error(connection_writer_loop(client_receiver, stream));
129129
}
130130
}
131131
}

0 commit comments

Comments
 (0)