about summary refs log tree commit diff
path: root/src/docs/println_empty_string.txt
blob: b980413022cab084167d94e2c8fe726d1971561e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
### 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!();
```