rust/tests/ui/tabs_in_doc_comments.stderr

54 lines
1.8 KiB
Plaintext
Raw Normal View History

2019-11-15 09:18:08 -06:00
error: using tabs in doc comments is not recommended
--> tests/ui/tabs_in_doc_comments.rs:5:5
2019-11-15 09:18:08 -06:00
|
LL | /// - first one
| ^^^^ help: consider using four spaces per tab
2019-11-15 09:18:08 -06:00
|
= note: `-D clippy::tabs-in-doc-comments` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::tabs_in_doc_comments)]`
2019-11-15 09:18:08 -06:00
error: using tabs in doc comments is not recommended
--> tests/ui/tabs_in_doc_comments.rs:5:13
2019-11-15 09:18:08 -06:00
|
LL | /// - first one
| ^^^^^^^^ help: consider using four spaces per tab
2019-11-15 09:18:08 -06:00
error: using tabs in doc comments is not recommended
--> tests/ui/tabs_in_doc_comments.rs:6:5
2019-11-15 09:18:08 -06:00
|
LL | /// - second one
| ^^^^ help: consider using four spaces per tab
2019-11-15 09:18:08 -06:00
error: using tabs in doc comments is not recommended
--> tests/ui/tabs_in_doc_comments.rs:6:14
2019-11-15 09:18:08 -06:00
|
LL | /// - second one
| ^^^^ help: consider using four spaces per tab
2019-11-15 09:18:08 -06:00
error: using tabs in doc comments is not recommended
--> tests/ui/tabs_in_doc_comments.rs:9:9
2019-11-15 09:18:08 -06:00
|
LL | /// - First String:
| ^^^^ help: consider using four spaces per tab
2019-11-15 09:18:08 -06:00
error: using tabs in doc comments is not recommended
--> tests/ui/tabs_in_doc_comments.rs:10:9
2019-11-15 09:18:08 -06:00
|
LL | /// - needs to be inside here
| ^^^^^^^^ help: consider using four spaces per tab
2019-11-15 09:18:08 -06:00
error: using tabs in doc comments is not recommended
--> tests/ui/tabs_in_doc_comments.rs:13:9
2019-11-15 09:18:08 -06:00
|
LL | /// - Second String:
| ^^^^ help: consider using four spaces per tab
2019-11-15 09:18:08 -06:00
error: using tabs in doc comments is not recommended
--> tests/ui/tabs_in_doc_comments.rs:14:9
2019-11-15 09:18:08 -06:00
|
LL | /// - needs to be inside here
| ^^^^^^^^ help: consider using four spaces per tab
2019-11-15 09:18:08 -06:00
error: aborting due to 8 previous errors