rust/src/docs/println_empty_string.txt
2022-09-09 13:36:26 +02:00

16 lines
No EOL
218 B
Text

### What it does
This lint warns when you use `println!("")` to
print a newline.
### Why is this bad?
You should use `println!()`, which is simpler.
### Example
```
println!("");
```
Use instead:
```
println!();
```