Fix typo in needless_borrows_for_generic_args.rs

This commit is contained in:
cowlicks 2024-04-10 12:57:24 -05:00 committed by GitHub
parent 62fd1d5377
commit 8b5447c622
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@ use std::collections::VecDeque;
declare_clippy_lint! {
/// ### What it does
/// Checks for borrow operations (`&`) that used as a generic argument to a
/// Checks for borrow operations (`&`) that are used as a generic argument to a
/// function when the borrowed value could be used.
///
/// ### Why is this bad?