From cb3fcbbcfe3d92ae822f5fba402dbb3d48f30470 Mon Sep 17 00:00:00 2001 From: Yusuf Raji Date: Sat, 11 May 2024 17:06:12 +0200 Subject: [PATCH] Improve clippy_lints/src/loops/mod.rs doc Co-authored-by: llogiq --- clippy_lints/src/loops/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/loops/mod.rs b/clippy_lints/src/loops/mod.rs index eb363a703929..3dcb050d77e6 100644 --- a/clippy_lints/src/loops/mod.rs +++ b/clippy_lints/src/loops/mod.rs @@ -427,7 +427,7 @@ declare_clippy_lint! { /// /// ### Known problems /// The lint will catch all while loops comparing floating point - /// values no matter whether it's a threshold or something. + /// values without regarding the increment. /// /// ### Example /// ```no_run