16 lines
No EOL
218 B
Text
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!();
|
|
``` |