about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--clippy_lints/src/misc.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/clippy_lints/src/misc.rs b/clippy_lints/src/misc.rs
index 8cae91f434c..362eaea3c1f 100644
--- a/clippy_lints/src/misc.rs
+++ b/clippy_lints/src/misc.rs
@@ -48,8 +48,8 @@ declare_clippy_lint! {
 declare_clippy_lint! {
     /// **What it does:** Checks for comparisons to NaN.
     ///
-    /// **Why is this bad?** NaN does not compare meaningfully to anything   not
-    /// even itself   so those comparisons are simply wrong.
+    /// **Why is this bad?** NaN does not compare meaningfully to anything – not
+    /// even itself – so those comparisons are simply wrong.
     ///
     /// **Known problems:** None.
     ///