summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/doc/unbalanced_ticks.stderr
blob: a462b98871a8810593bf2506421ebc09490ce403 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
error: backticks are unbalanced
  --> $DIR/unbalanced_ticks.rs:7:1
   |
LL | / /// This is a doc comment with `unbalanced_tick marks and several words that
LL | | /// should be `encompassed_by` tick marks because they `contain_underscores`.
LL | | /// Because of the initial `unbalanced_tick` pair, the error message is
LL | | /// very `confusing_and_misleading`.
   | |____________________________________^
   |
   = note: `-D clippy::doc-markdown` implied by `-D warnings`
   = help: a backtick may be missing a pair

error: backticks are unbalanced
  --> $DIR/unbalanced_ticks.rs:13:1
   |
LL | /// This paragraph has `unbalanced_tick marks and should stop_linting.
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: a backtick may be missing a pair

error: item in documentation is missing backticks
  --> $DIR/unbalanced_ticks.rs:15:32
   |
LL | /// This paragraph is fine and should_be linted normally.
   |                                ^^^^^^^^^
   |
help: try
   |
LL | /// This paragraph is fine and `should_be` linted normally.
   |                                ~~~~~~~~~~~

error: backticks are unbalanced
  --> $DIR/unbalanced_ticks.rs:17:1
   |
LL | /// Double unbalanced backtick from ``here to here` should lint.
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: a backtick may be missing a pair

error: item in documentation is missing backticks
  --> $DIR/unbalanced_ticks.rs:30:8
   |
LL | /// ## not_fine
   |        ^^^^^^^^
   |
help: try
   |
LL | /// ## `not_fine`
   |        ~~~~~~~~~~

error: backticks are unbalanced
  --> $DIR/unbalanced_ticks.rs:32:1
   |
LL | /// ### `unbalanced
   | ^^^^^^^^^^^^^^^^^^^
   |
   = help: a backtick may be missing a pair

error: backticks are unbalanced
  --> $DIR/unbalanced_ticks.rs:34:1
   |
LL | /// - This `item has unbalanced tick marks
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: a backtick may be missing a pair

error: item in documentation is missing backticks
  --> $DIR/unbalanced_ticks.rs:35:23
   |
LL | /// - This item needs backticks_here
   |                       ^^^^^^^^^^^^^^
   |
help: try
   |
LL | /// - This item needs `backticks_here`
   |                       ~~~~~~~~~~~~~~~~

error: aborting due to 8 previous errors