Correct typo in lint description

This commit is contained in:
Anastasis Georgoulas 2024-10-15 22:47:04 +01:00
parent b86a48955e
commit 48636259df

View File

@ -4046,7 +4046,7 @@
/// Checks the usage of `.get().is_some()` or `.get().is_none()` on std map types. /// Checks the usage of `.get().is_some()` or `.get().is_none()` on std map types.
/// ///
/// ### Why is this bad? /// ### Why is this bad?
/// It can be done in one call with `.contains()`/`.contains_keys()`. /// It can be done in one call with `.contains()`/`.contains_key()`.
/// ///
/// ### Example /// ### Example
/// ```no_run /// ```no_run