diff options
| author | Takayuki Nakata <f.seasons017@gmail.com> | 2021-02-22 23:02:04 +0900 |
|---|---|---|
| committer | Takayuki Nakata <f.seasons017@gmail.com> | 2021-02-22 23:02:04 +0900 |
| commit | e05965eb13a3e303ffe9001bb73e7d9c87d3bf78 (patch) | |
| tree | 88b189a62e2b329893127166c3a929de77937441 | |
| parent | 728f3976f0dc0efee8f686d7ec7ecf2d3e7d9d6d (diff) | |
| download | rust-e05965eb13a3e303ffe9001bb73e7d9c87d3bf78.tar.gz rust-e05965eb13a3e303ffe9001bb73e7d9c87d3bf78.zip | |
Remove unneeded blank lines from doc
| -rw-r--r-- | clippy_lints/src/write.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clippy_lints/src/write.rs b/clippy_lints/src/write.rs index e40fdca6a99..f21f5180554 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"); /// |
