about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/doc/doc_markdown-issue_13097.stderr
blob: cea788301d4dcfb14d08184848e8b83ec0528154 (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: item in documentation is missing backticks
  --> tests/ui/doc/doc_markdown-issue_13097.rs:8:13
   |
LL |         /// HumaNified
   |             ^^^^^^^^^^
   |
note: the lint level is defined here
  --> tests/ui/doc/doc_markdown-issue_13097.rs:1:9
   |
LL | #![deny(clippy::doc_markdown)]
   |         ^^^^^^^^^^^^^^^^^^^^
help: try
   |
LL -         /// HumaNified
LL +         /// `HumaNified`
   |

error: item in documentation is missing backticks
  --> tests/ui/doc/doc_markdown-issue_13097.rs:20:8
   |
LL |      * HumaNified
   |        ^^^^^^^^^^
   |
help: try
   |
LL -      * HumaNified
LL +      * `HumaNified`
   |

error: item in documentation is missing backticks
  --> tests/ui/doc/doc_markdown-issue_13097.rs:22:25
   |
LL |      * Before \u{08888} HumaNified \{u08888} After
   |                         ^^^^^^^^^^
   |
help: try
   |
LL -      * Before \u{08888} HumaNified \{u08888} After
LL +      * Before \u{08888} `HumaNified` \{u08888} After
   |

error: item in documentation is missing backticks
  --> tests/ui/doc/doc_markdown-issue_13097.rs:24:20
   |
LL |      * meow meow \[meow_meow\] meow meow?
   |                    ^^^^^^^^^
   |
help: try
   |
LL -      * meow meow \[meow_meow\] meow meow?
LL +      * meow meow \[`meow_meow`\] meow meow?
   |

error: item in documentation is missing backticks
  --> tests/ui/doc/doc_markdown-issue_13097.rs:26:18
   |
LL |      * \u{08888} meow_meow \[meow meow] meow?
   |                  ^^^^^^^^^
   |
help: try
   |
LL -      * \u{08888} meow_meow \[meow meow] meow?
LL +      * \u{08888} `meow_meow` \[meow meow] meow?
   |

error: item in documentation is missing backticks
  --> tests/ui/doc/doc_markdown-issue_13097.rs:30:38
   |
LL |      * \[hi\](<https://example.com>) HumaNified \[example](<https://example.com>)
   |                                      ^^^^^^^^^^
   |
help: try
   |
LL -      * \[hi\](<https://example.com>) HumaNified \[example](<https://example.com>)
LL +      * \[hi\](<https://example.com>) `HumaNified` \[example](<https://example.com>)
   |

error: aborting due to 6 previous errors