mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
77 lines
1.5 KiB
Text
77 lines
1.5 KiB
Text
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:4: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:12:5
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:14:9
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:25:5
|
|
|
|
|
LL | #[doc = ""]
|
|
| ^^^^^^^^^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:28:5
|
|
|
|
|
LL | / #[doc = ""]
|
|
LL | | #[doc = ""]
|
|
| |_______________^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:35:5
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:48:13
|
|
|
|
|
LL | /*! */
|
|
| ^^^^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:56:13
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: empty doc comment
|
|
--> tests/ui/empty_docs.rs:64:9
|
|
|
|
|
LL | ///
|
|
| ^^^
|
|
|
|
|
= help: consider removing or filling it
|
|
|
|
error: aborting due to 9 previous errors
|
|
|