about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/tabs_in_doc_comments.stderr
blob: 331bccaca92d24945265721035c06147cbc184dd (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
53
error: using tabs in doc comments is not recommended
  --> tests/ui/tabs_in_doc_comments.rs:5:5
   |
LL | ///     - first        one
   |     ^^^^ help: consider using four spaces per tab
   |
   = note: `-D clippy::tabs-in-doc-comments` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::tabs_in_doc_comments)]`

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

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

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

error: using tabs in doc comments is not recommended
  --> tests/ui/tabs_in_doc_comments.rs:13:9
   |
LL |     ///     - First String:
   |         ^^^^ help: consider using four spaces per tab

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

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

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

error: aborting due to 8 previous errors