mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
1eb1e1816d
`pulldown-cmark` has slightly different behavior between 0.11.0 and 0.11.2, causing one of the `unportable-markdown` tests to no longer emit an error. Per [1], remove the error annotation and bless the output. [1]: https://github.com/rust-lang/rust/pull/128722#issuecomment-2295522292
24 lines
529 B
Plaintext
24 lines
529 B
Plaintext
error: unportable markdown
|
|
--> $DIR/unportable-markdown.rs:48:5
|
|
|
|
|
LL | /// >bar
|
|
| ^
|
|
|
|
|
= help: confusing block quote with no space after the `>` marker
|
|
note: the lint level is defined here
|
|
--> $DIR/unportable-markdown.rs:8:9
|
|
|
|
|
LL | #![deny(rustdoc::unportable_markdown)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
help: if the quote is intended, add a space
|
|
|
|
|
LL | /// > bar
|
|
| +
|
|
help: if it should not be a quote, escape it
|
|
|
|
|
LL | /// \>bar
|
|
| +
|
|
|
|
error: aborting due to 1 previous error
|
|
|