Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: variables can be used directly in the `format!` string --> src/cmd/rename.rs:96:35 | 96 | generic_headers.push_str(&format!("_col_{},", i)); | ^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::uninlined_format_args)]` help: change this to | 96 - generic_headers.push_str(&format!("_col_{},", i)); 96 + generic_headers.push_str(&format!("_col_{i},"));
- Loading branch information