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