1error: using tabs in doc comments is not recommended
2  --> $DIR/tabs_in_doc_comments.rs:12:9
3   |
4LL |     ///     - First String:
5   |         ^^^^ help: consider using four spaces per tab
6   |
7   = note: `-D clippy::tabs-in-doc-comments` implied by `-D warnings`
8
9error: using tabs in doc comments is not recommended
10  --> $DIR/tabs_in_doc_comments.rs:13:9
11   |
12LL |     ///         - needs to be inside here
13   |         ^^^^^^^^ help: consider using four spaces per tab
14
15error: using tabs in doc comments is not recommended
16  --> $DIR/tabs_in_doc_comments.rs:16:9
17   |
18LL |     ///     - Second String:
19   |         ^^^^ help: consider using four spaces per tab
20
21error: using tabs in doc comments is not recommended
22  --> $DIR/tabs_in_doc_comments.rs:17:9
23   |
24LL |     ///         - needs to be inside here
25   |         ^^^^^^^^ help: consider using four spaces per tab
26
27error: using tabs in doc comments is not recommended
28  --> $DIR/tabs_in_doc_comments.rs:8:5
29   |
30LL | ///     - first        one
31   |     ^^^^ help: consider using four spaces per tab
32
33error: using tabs in doc comments is not recommended
34  --> $DIR/tabs_in_doc_comments.rs:8:13
35   |
36LL | ///     - first        one
37   |                ^^^^^^^^ help: consider using four spaces per tab
38
39error: using tabs in doc comments is not recommended
40  --> $DIR/tabs_in_doc_comments.rs:9:5
41   |
42LL | ///     - second    one
43   |     ^^^^ help: consider using four spaces per tab
44
45error: using tabs in doc comments is not recommended
46  --> $DIR/tabs_in_doc_comments.rs:9:14
47   |
48LL | ///     - second    one
49   |                 ^^^^ help: consider using four spaces per tab
50
51error: aborting due to 8 previous errors
52
53