style: slight stdout phrasing improvement

This commit is contained in:
xeruf 2024-07-24 19:11:08 +03:00
parent f3110564cd
commit ad65388979
1 changed files with 2 additions and 1 deletions

View File

@ -251,6 +251,7 @@ async fn main() {
None => break, None => break,
} }
} }
println!();
tasks.update_state("", |t| { tasks.update_state("", |t| {
if t.pure_state() == State::Active { if t.pure_state() == State::Active {
@ -261,7 +262,7 @@ async fn main() {
}); });
drop(tasks); drop(tasks);
eprintln!("Waiting for sync to relay..."); eprintln!("Submitting pending changes...");
or_print(sender.await); or_print(sender.await);
} }