]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/src/docs/writeln_empty_string.txt
New upstream version 1.66.0+dfsg1
[rustc.git] / src / tools / clippy / src / docs / writeln_empty_string.txt
CommitLineData
f2b60f7d
FG
1### What it does
2This lint warns when you use `writeln!(buf, "")` to
3print a newline.
4
5### Why is this bad?
6You should use `writeln!(buf)`, which is simpler.
7
8### Example
9```
10writeln!(buf, "");
11```
12
13Use instead:
14```
15writeln!(buf);
16```