From eaf8f0839090fd144a2ca05a91bef5c50ccc590a Mon Sep 17 00:00:00 2001 From: "KRAAI, MATTHEW [VISUS]" Date: Mon, 19 Aug 2019 12:38:33 -0700 Subject: [PATCH] Restore en dashes --- clippy_lints/src/misc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clippy_lints/src/misc.rs b/clippy_lints/src/misc.rs index 8cae91f434cd..362eaea3c1f8 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. ///