about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-10-20 12:02:32 +0000
committerbors <bors@rust-lang.org>2021-10-20 12:02:32 +0000
commit76150a4922b65426f45055e4af43ab8408f7d4b4 (patch)
tree24fe9ba44f429133f232016ac5a3ac1576de92ab
parent06722c0c154565e415cedc0a298fa7a2be0997f1 (diff)
parent9cf68e40fe37106e22859b67fb204145467162d5 (diff)
downloadrust-76150a4922b65426f45055e4af43ab8408f7d4b4.tar.gz
rust-76150a4922b65426f45055e4af43ab8408f7d4b4.zip
Auto merge of #7848 - Veykril:patch-1, r=xFrednet
Fix doc heading of `transmute_num_to_bytes`

changelog: none
-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?