Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore uninlined_format_args pedantic clippy lint in test
error: variables can be used directly in the `format!` string --> tests/test_expr.rs:44:43 | 44 | .map_or_else(String::new, |s| format!("; did you mean '{}'?", s)), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 44 - .map_or_else(String::new, |s| format!("; did you mean '{}'?", s)), 44 + .map_or_else(String::new, |s| format!("; did you mean '{s}'?")), |
- Loading branch information