forked from mirror/async-std
Merge pull request #614 from killzoner/doc-typo-await
fix: Fix typo in documentation
This commit is contained in:
commit
63b6a2b961
1 changed files with 1 additions and 1 deletions
|
@ -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(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue