Auto merge of #11133 - GuillaumeGomez:fix-description-typo, r=Manishearth

Fix typo in `needless_pass_by_ref_mut` lint description

Someone nicely showed me that I made a small typo in https://github.com/rust-lang/rust-clippy/pull/10900.

changelog: none
This commit is contained in:
bors 2023-07-10 09:45:22 +00:00
commit 9ab7137686

View File

@ -22,7 +22,7 @@
/// ### What it does
/// Check if a `&mut` function argument is actually used mutably.
///
/// Be careful if the function is publically reexported as it would break compatibility with
/// Be careful if the function is publicly reexported as it would break compatibility with
/// users of this function.
///
/// ### Why is this bad?