about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLukas Wirth <lukastw97@gmail.com>2021-10-20 13:46:12 +0200
committerGitHub <noreply@github.com>2021-10-20 13:46:12 +0200
commit9cf68e40fe37106e22859b67fb204145467162d5 (patch)
tree24fe9ba44f429133f232016ac5a3ac1576de92ab
parent06722c0c154565e415cedc0a298fa7a2be0997f1 (diff)
downloadrust-9cf68e40fe37106e22859b67fb204145467162d5.tar.gz
rust-9cf68e40fe37106e22859b67fb204145467162d5.zip
Fix doc heading of TRANSMUTE_NUM_TO_BYTES
-rw-r--r--clippy_lints/src/transmute/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/transmute/mod.rs b/clippy_lints/src/transmute/mod.rs
index 374999473a4..e6acf1a94c9 100644
--- a/clippy_lints/src/transmute/mod.rs
+++ b/clippy_lints/src/transmute/mod.rs
@@ -263,7 +263,7 @@ declare_clippy_lint! {
 }
 
 declare_clippy_lint! {
-    /// # What it does
+    /// ### What it does
     /// Checks for transmutes from a number to an array of `u8`
     ///
     /// ### Why this is bad?