mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
78 lines
1.5 KiB
Text
78 lines
1.5 KiB
Text
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:9:5
|
|
|
|
|
LL | //!
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
= note: `-D clippy::empty-docs` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_docs)]`
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:17:5
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:19:9
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:30:13
|
|
|
|
|
LL | #[doc = ""]
|
|
| ^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:33:13
|
|
|
|
|
LL | #[doc = ""]
|
|
| _____________^
|
|
LL | | #[doc = ""]
|
|
| |______________^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:40:5
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:53:13
|
|
|
|
|
LL | /*! */
|
|
| ^^^^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:61:13
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:69:9
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: aborting due to 9 previous errors
|
|
|