rust/clippy_lints
Matthew Ingwersen 329dc4715b Fix redundant_closure_for_method_calls suggestion
Certain types must be enclosed in angle brackets and must have generic
arguments substituted to create a working suggestion. For example, if
`s` has type `&[u8]`, then `|s| s.len()` may be replaced with
`<[u8]>::len`. Previously, Clippy erroneously suggested `[T]::len`.
2022-10-28 16:25:51 -04:00
..
src Fix redundant_closure_for_method_calls suggestion 2022-10-28 16:25:51 -04:00
Cargo.toml Generate lint categories and explanations with declare_clippy_lint 2022-10-23 20:32:26 +00:00
README.md

This crate contains Clippy lints. For the main crate, check GitHub.