Obviously old comment removal

This commit is contained in:
JirCep 2023-02-13 22:25:41 +01:00
parent 6360806ade
commit fc9038c140
1 changed files with 0 additions and 7 deletions

View File

@ -140,13 +140,6 @@ async fn get_new_num() -> u8 { /* ... */ 5 }
async fn run_on_new_num(_: u8) -> u8 { /* ... */ 5 }
// Runs `run_on_new_num` with the latest number
// retrieved from `get_new_num`.
//
// `get_new_num` is re-run every time a timer elapses,
// immediately cancelling the currently running
// `run_on_new_num` and replacing it with the newly
// returned value.
async fn run_loop(
mut interval_timer: impl Stream<Item = ()> + FusedStream + Unpin,
starting_num: u8,