about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--clippy_lints/src/loops/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/loops/mod.rs b/clippy_lints/src/loops/mod.rs
index eb363a70392..3dcb050d77e 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