tokio-rs / toasty

An async ORM for Rust (incubating)
MIT License
1.11k stars 26 forks source link

`format!` statement simplification #17

Closed hamirmahal closed 1 month ago

hamirmahal commented 1 month ago

We can update lines like

let file = format!("{}.rs", module_name);

to

let file = format!("{module_name}.rs");

to make things more readable for potential contributors and improve developer productivity.