about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKRAAI, MATTHEW [VISUS] <mkraai@its.jnj.com>2019-08-19 12:38:33 -0700
committerKRAAI, MATTHEW [VISUS] <mkraai@its.jnj.com>2019-08-19 12:38:33 -0700
commiteaf8f0839090fd144a2ca05a91bef5c50ccc590a (patch)
tree550f5ce9dc4bfc79e348e4ff9d88f1cc0a461e56
parent204b2f365864c304bcf510adeba77741653a7edf (diff)
downloadrust-eaf8f0839090fd144a2ca05a91bef5c50ccc590a.tar.gz
rust-eaf8f0839090fd144a2ca05a91bef5c50ccc590a.zip
Restore en dashes
-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.
     ///