Skip to content

Commit

Permalink
Merge pull request #614 from killzoner/doc-typo-await
Browse files Browse the repository at this point in the history
fix: Fix typo in documentation
  • Loading branch information
yoshuawuyts authored Dec 12, 2019
2 parents 1103c17 + 447c171 commit 63b6a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/tutorial/handling_disconnection.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ async fn accept_loop(addr: impl ToSocketAddrs) -> Result<()> {
spawn_and_log_error(connection_loop(broker_sender.clone(), stream));
}
drop(broker_sender);
broker_handle.await?;
broker_handle.await;
Ok(())
}
Expand Down

0 comments on commit 63b6a2b

Please sign in to comment.