mirror of
https://github.com/lov3b/ecb-rates.git
synced 2025-02-23 02:10:07 +01:00
Use to_string instead of format!
This commit is contained in:
parent
3ec57b4414
commit
642db1dd6d
@ -115,7 +115,7 @@ async fn main() -> ExitCode {
|
|||||||
.map(|x| {
|
.map(|x| {
|
||||||
let mut t: TableRef = x.into();
|
let mut t: TableRef = x.into();
|
||||||
t.sort();
|
t.sort();
|
||||||
format!("{}", t)
|
t.to_string()
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>()
|
.collect::<Vec<_>>()
|
||||||
.join("\n"),
|
.join("\n"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user