changelog: Fix typo in needless_pass_by_ref_mut lint description

This commit is contained in:
Guillaume Gomez 2023-07-09 21:59:23 +02:00
parent f048f73251
commit d1575d1f54

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?