Improve wording of manual_contains docs

This is mainly to avoid the phrase "more fast" since that is not idiomatic English
This commit is contained in:
Ethan Brierley 2025-05-29 22:13:02 +01:00
parent beaf15532a
commit e34368b48d
No known key found for this signature in database

View file

@ -4439,7 +4439,7 @@ declare_clippy_lint! {
/// Checks for usage of `iter().any()` on slices when it can be replaced with `contains()` and suggests doing so.
///
/// ### Why is this bad?
/// `contains()` is more concise and idiomatic, sometimes more fast.
/// `contains()` is more concise and idiomatic, while also being faster in some cases.
///
/// ### Example
/// ```no_run