mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
82 lines
2.4 KiB
Text
82 lines
2.4 KiB
Text
error: backticks are unbalanced
|
|
--> tests/ui/doc/unbalanced_ticks.rs:7:5
|
|
|
|
|
LL | /// This is a doc comment with `unbalanced_tick marks and several words that
|
|
| _____^
|
|
LL | |
|
|
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`.
|
|
| |____________________________________^
|
|
|
|
|
= help: a backtick may be missing a pair
|
|
= note: `-D clippy::doc-markdown` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::doc_markdown)]`
|
|
|
|
error: backticks are unbalanced
|
|
--> tests/ui/doc/unbalanced_ticks.rs:14:5
|
|
|
|
|
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
|
|
--> tests/ui/doc/unbalanced_ticks.rs:17: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
|
|
--> tests/ui/doc/unbalanced_ticks.rs:20:5
|
|
|
|
|
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
|
|
--> tests/ui/doc/unbalanced_ticks.rs:34:8
|
|
|
|
|
LL | /// ## not_fine
|
|
| ^^^^^^^^
|
|
|
|
|
help: try
|
|
|
|
|
LL | /// ## `not_fine`
|
|
| ~~~~~~~~~~
|
|
|
|
error: backticks are unbalanced
|
|
--> tests/ui/doc/unbalanced_ticks.rs:37:5
|
|
|
|
|
LL | /// ### `unbalanced
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: a backtick may be missing a pair
|
|
|
|
error: backticks are unbalanced
|
|
--> tests/ui/doc/unbalanced_ticks.rs:40:5
|
|
|
|
|
LL | /// - This `item has unbalanced tick marks
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: a backtick may be missing a pair
|
|
|
|
error: item in documentation is missing backticks
|
|
--> tests/ui/doc/unbalanced_ticks.rs:42:23
|
|
|
|
|
LL | /// - This item needs backticks_here
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
help: try
|
|
|
|
|
LL | /// - This item needs `backticks_here`
|
|
| ~~~~~~~~~~~~~~~~
|
|
|
|
error: aborting due to 8 previous errors
|
|
|