2022-02-01 22:22:57 -07:00
|
|
|
error: unclosed HTML tag `i32`
|
|
|
|
--> $DIR/html-as-generics.rs:4:13
|
|
|
|
|
|
|
|
|
LL | /// This Vec<i32> thing!
|
2022-02-01 23:27:07 -07:00
|
|
|
| ^^^^^
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/html-as-generics.rs:2:9
|
|
|
|
|
|
|
|
|
LL | #![deny(rustdoc::invalid_html_tags)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-01 23:27:07 -07:00
|
|
|
help: try marking as source code
|
|
|
|
|
|
|
|
|
LL | /// This `Vec<i32>` thing!
|
|
|
|
| + +
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
error: unclosed HTML tag `i32`
|
2022-02-01 23:27:07 -07:00
|
|
|
--> $DIR/html-as-generics.rs:9:18
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
|
LL | /// This vec::Vec<i32> thing!
|
2022-02-01 23:27:07 -07:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: try marking as source code
|
|
|
|
|
|
|
|
|
LL | /// This `vec::Vec<i32>` thing!
|
|
|
|
| + +
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
error: unclosed HTML tag `i32`
|
2022-02-01 23:27:07 -07:00
|
|
|
--> $DIR/html-as-generics.rs:14:13
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
|
LL | /// This i32<i32> thing!
|
2022-02-01 23:27:07 -07:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: try marking as source code
|
|
|
|
|
|
|
|
|
LL | /// This `i32<i32>` thing!
|
|
|
|
| + +
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
error: unclosed HTML tag `i32`
|
2022-02-01 23:27:07 -07:00
|
|
|
--> $DIR/html-as-generics.rs:19:15
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
|
LL | /// This Vec::<i32> thing!
|
2022-02-01 23:27:07 -07:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: try marking as source code
|
|
|
|
|
|
|
|
|
LL | /// This `Vec::<i32>` thing!
|
|
|
|
| + +
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
error: unclosed HTML tag `i32`
|
2022-02-01 23:27:07 -07:00
|
|
|
--> $DIR/html-as-generics.rs:24:41
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
|
LL | /// This [link](https://rust-lang.org)::<i32> thing!
|
2022-02-01 23:27:07 -07:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: try marking as source code
|
|
|
|
|
|
|
|
|
LL | /// This [link](https://rust-lang.org)`::<i32>` thing!
|
|
|
|
| + +
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
error: unclosed HTML tag `i32`
|
2022-02-01 23:27:07 -07:00
|
|
|
--> $DIR/html-as-generics.rs:29:21
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
|
LL | /// This <span>Vec::<i32></span> thing!
|
2022-02-01 23:27:07 -07:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: try marking as source code
|
|
|
|
|
|
|
|
|
LL | /// This <span>`Vec::<i32>`</span> thing!
|
|
|
|
| + +
|
2022-02-01 22:22:57 -07:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|