about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-09-15 12:26:25 +0000
committerbors <bors@rust-lang.org>2020-09-15 12:26:25 +0000
commit9f0f035fe0b800adef73864cdcc1c1b528c80547 (patch)
tree5f5637bfb7e275a23b3d498f3a6282b73bd1ee19
parent12ce312bb239aa0a347fd9d03fabb2a9f84bfe10 (diff)
parentfd151f5135def6ffae7530f17ff0c458239f209d (diff)
downloadrust-9f0f035fe0b800adef73864cdcc1c1b528c80547.tar.gz
rust-9f0f035fe0b800adef73864cdcc1c1b528c80547.zip
Auto merge of #6045 - giraffate:remove_extra_blank_line, r=flip1995
Remove an extra blank line in `shadow_same`

It seems to be an extra blank line in doc example.

changelog: none

<img width="1143" alt="スクリーンショット 2020-09-15 8 50 30" src="https://user-images.githubusercontent.com/17407489/93149409-369df080-f731-11ea-9a39-d8bbc72b61ee.png">
-rw-r--r--clippy_lints/src/shadow.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/clippy_lints/src/shadow.rs b/clippy_lints/src/shadow.rs
index 087d50c90e6..ef4a54735a4 100644
--- a/clippy_lints/src/shadow.rs
+++ b/clippy_lints/src/shadow.rs
@@ -25,7 +25,6 @@ declare_clippy_lint! {
     /// **Example:**
     /// ```rust
     /// # let x = 1;
-    ///
     /// // Bad
     /// let x = &x;
     ///