From e05965eb13a3e303ffe9001bb73e7d9c87d3bf78 Mon Sep 17 00:00:00 2001 From: Takayuki Nakata Date: Mon, 22 Feb 2021 23:02:04 +0900 Subject: [PATCH] Remove unneeded blank lines from doc --- clippy_lints/src/write.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/clippy_lints/src/write.rs b/clippy_lints/src/write.rs index e40fdca6a994..f21f51805548 100644 --- a/clippy_lints/src/write.rs +++ b/clippy_lints/src/write.rs @@ -147,7 +147,6 @@ declare_clippy_lint! { /// ```rust /// # use std::fmt::Write; /// # let mut buf = String::new(); - /// /// // Bad /// writeln!(buf, ""); /// @@ -174,7 +173,6 @@ declare_clippy_lint! { /// # use std::fmt::Write; /// # let mut buf = String::new(); /// # let name = "World"; - /// /// // Bad /// write!(buf, "Hello {}!\n", name); /// @@ -200,7 +198,6 @@ declare_clippy_lint! { /// ```rust /// # use std::fmt::Write; /// # let mut buf = String::new(); - /// /// // Bad /// writeln!(buf, "{}", "foo"); ///