We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a3127fa + e05965e commit 0984754Copy full SHA for 0984754
clippy_lints/src/write.rs
@@ -147,7 +147,6 @@ declare_clippy_lint! {
147
/// ```rust
148
/// # use std::fmt::Write;
149
/// # let mut buf = String::new();
150
- ///
151
/// // Bad
152
/// writeln!(buf, "");
153
///
@@ -174,7 +173,6 @@ declare_clippy_lint! {
174
173
175
176
/// # let name = "World";
177
178
179
/// write!(buf, "Hello {}!\n", name);
180
@@ -200,7 +198,6 @@ declare_clippy_lint! {
200
198
201
199
202
203
204
205
/// writeln!(buf, "{}", "foo");
206
0 commit comments