summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/doc_valid_idents_append/doc_markdown.stderr
blob: 0f767c9b8559f712b87b59a2d773d59b966cc997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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.
   |     ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::doc-markdown` implied by `-D warnings`
help: try
   |
LL | /// `TestItemThingyOfCoolness` might sound cool but is not on the list and should be linted.
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~

error: aborting due to previous error