Auto merge of #12665 - cowlicks:patch-1, r=Alexendoo

Fix typo in needless_borrows_for_generic_args.rs

fix small typo

changelog: none
This commit is contained in:
bors 2024-04-11 14:45:31 +00:00
commit 46323751ad

View File

@ -23,7 +23,7 @@
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?