mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
47 lines
1.9 KiB
Text
47 lines
1.9 KiB
Text
error: docs for function returning `Result` missing `# Errors` section
|
|
--> tests/ui/doc_errors.rs:7:1
|
|
|
|
|
LL | pub fn pub_fn_missing_errors_header() -> Result<(), ()> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::missing-errors-doc` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::missing_errors_doc)]`
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
|
--> tests/ui/doc_errors.rs:13:1
|
|
|
|
|
LL | pub async fn async_pub_fn_missing_errors_header() -> Result<(), ()> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
|
--> tests/ui/doc_errors.rs:19:1
|
|
|
|
|
LL | pub fn pub_fn_returning_io_result() -> io::Result<()> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
|
--> tests/ui/doc_errors.rs:25:1
|
|
|
|
|
LL | pub async fn async_pub_fn_returning_io_result() -> io::Result<()> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
|
--> tests/ui/doc_errors.rs:56:5
|
|
|
|
|
LL | pub fn pub_method_missing_errors_header() -> Result<(), ()> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
|
--> tests/ui/doc_errors.rs:62:5
|
|
|
|
|
LL | pub async fn async_pub_method_missing_errors_header() -> Result<(), ()> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
|
--> tests/ui/doc_errors.rs:113:5
|
|
|
|
|
LL | fn trait_method_missing_errors_header() -> Result<(), ()>;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 7 previous errors
|
|
|