about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYusuf Raji <raji.yusuf234@gmail.com>2024-05-11 17:06:12 +0200
committerGitHub <noreply@github.com>2024-05-11 17:06:12 +0200
commitcb3fcbbcfe3d92ae822f5fba402dbb3d48f30470 (patch)
treef0496d551280697c3676aa4e989afedda72711f3
parentc9ea0ae502aa5afe84ae528b697824412ebabf77 (diff)
downloadrust-cb3fcbbcfe3d92ae822f5fba402dbb3d48f30470.tar.gz
rust-cb3fcbbcfe3d92ae822f5fba402dbb3d48f30470.zip
Improve clippy_lints/src/loops/mod.rs doc
Co-authored-by: llogiq <bogusandre@gmail.com>
-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