summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/tabs_in_doc_comments.stderr
blob: 355f2e805796436a09d4900cb596ed3848926bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
error: using tabs in doc comments is not recommended
  --> $DIR/tabs_in_doc_comments.rs:12:9
   |
LL |     ///     - First String:
   |         ^^^^ help: consider using four spaces per tab
   |
   = note: `-D clippy::tabs-in-doc-comments` implied by `-D warnings`

error: using tabs in doc comments is not recommended
  --> $DIR/tabs_in_doc_comments.rs:13:9
   |
LL |     ///         - needs to be inside here
   |         ^^^^^^^^ help: consider using four spaces per tab

error: using tabs in doc comments is not recommended
  --> $DIR/tabs_in_doc_comments.rs:16:9
   |
LL |     ///     - Second String:
   |         ^^^^ help: consider using four spaces per tab

error: using tabs in doc comments is not recommended
  --> $DIR/tabs_in_doc_comments.rs:17:9
   |
LL |     ///         - needs to be inside here
   |         ^^^^^^^^ help: consider using four spaces per tab

error: using tabs in doc comments is not recommended
  --> $DIR/tabs_in_doc_comments.rs:8:5
   |
LL | ///     - first        one
   |     ^^^^ help: consider using four spaces per tab

error: using tabs in doc comments is not recommended
  --> $DIR/tabs_in_doc_comments.rs:8:13
   |
LL | ///     - first        one
   |                ^^^^^^^^ help: consider using four spaces per tab

error: using tabs in doc comments is not recommended
  --> $DIR/tabs_in_doc_comments.rs:9:5
   |
LL | ///     - second    one
   |     ^^^^ help: consider using four spaces per tab

error: using tabs in doc comments is not recommended
  --> $DIR/tabs_in_doc_comments.rs:9:14
   |
LL | ///     - second    one
   |                 ^^^^ help: consider using four spaces per tab

error: aborting due to 8 previous errors