Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix clippy::uninlined_format_args warning (#2659)
``` error: variables can be used directly in the `format!` string --> examples/functional/src/main.rs:45:5 | 45 | println!("Values={:?}", values); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-D clippy::uninlined-format-args` implied by `-D warnings` help: change this to | 45 - println!("Values={:?}", values); 45 + println!("Values={values:?}"); | ```
- Loading branch information