fix formatting for inline variables

This commit is contained in:
Benjamin Fry
2023-02-03 11:56:39 -08:00
parent b036dc8942
commit b34dfff95c
100 changed files with 340 additions and 443 deletions

View File

@@ -51,7 +51,7 @@ fn main() {
.expect("Failed completing lookup future")
.iter()
.collect::<Vec<_>>();
println!("{} resolved to {:?}", name, ips);
println!("{name} resolved to {ips:?}");
}
// Drop the resolver, which means that the runtime will become idle.