summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/doc_valid_idents_replace/doc_markdown.stderr
blob: e0613eb863b3996130d9e662980b2b4077b22bfe (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
error: item in documentation is missing backticks
  --> $DIR/doc_markdown.rs:6:5
   |
LL | /// OAuth and LaTeX are inside Clippy's default list.
   |     ^^^^^
   |
   = note: `-D clippy::doc-markdown` implied by `-D warnings`
help: try
   |
LL | /// `OAuth` and LaTeX are inside Clippy's default list.
   |     ~~~~~~~

error: item in documentation is missing backticks
  --> $DIR/doc_markdown.rs:6:15
   |
LL | /// OAuth and LaTeX are inside Clippy's default list.
   |               ^^^^^
   |
help: try
   |
LL | /// OAuth and `LaTeX` are inside Clippy's default list.
   |               ~~~~~~~

error: item in documentation is missing backticks
  --> $DIR/doc_markdown.rs:9:5
   |
LL | /// TestItemThingyOfCoolness might sound cool but is not on the list and should be linted.
   |     ^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: try
   |
LL | /// `TestItemThingyOfCoolness` might sound cool but is not on the list and should be linted.
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~

error: aborting due to 3 previous errors