code review

This commit is contained in:
Conrad Irwin 2023-10-09 18:13:52 -06:00
parent fb57299a1d
commit 8922437fcd
6 changed files with 14 additions and 39 deletions

View file

@ -878,7 +878,7 @@ impl Room {
Ok(())
}
pub fn next_room_update(&mut self) -> impl Future<Output = ()> {
pub fn room_update_completed(&mut self) -> impl Future<Output = ()> {
let mut done_rx = self.room_update_completed_rx.clone();
async move {
while let Some(result) = done_rx.next().await {