diff options
Diffstat (limited to 'src/docs/println_empty_string.txt')
| -rw-r--r-- | src/docs/println_empty_string.txt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/docs/println_empty_string.txt b/src/docs/println_empty_string.txt deleted file mode 100644 index b980413022c..00000000000 --- a/src/docs/println_empty_string.txt +++ /dev/null @@ -1,16 +0,0 @@ -### 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!(); -``` \ No newline at end of file |
