Skip to content

Commit

Permalink
Remove unneeded blank lines from doc
Browse files Browse the repository at this point in the history
  • Loading branch information
giraffate committed Feb 22, 2021
1 parent 728f397 commit e05965e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions clippy_lints/src/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ declare_clippy_lint! {
/// ```rust
/// # use std::fmt::Write;
/// # let mut buf = String::new();
///
/// // Bad
/// writeln!(buf, "");
///
Expand All @@ -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);
///
Expand All @@ -200,7 +198,6 @@ declare_clippy_lint! {
/// ```rust
/// # use std::fmt::Write;
/// # let mut buf = String::new();
///
/// // Bad
/// writeln!(buf, "{}", "foo");
///
Expand Down

0 comments on commit e05965e

Please sign in to comment.