Skip to content

Commit

Permalink
clippy: Enable clippy::doc_markdown.
Browse files Browse the repository at this point in the history
This is part of `clippy::pedantic` but is useful to enable all
of the time.
  • Loading branch information
waywardmonkeys authored and BiagioFesta committed Oct 5, 2023
1 parent bd35dc7 commit 73dd90d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wtransport-proto/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! WebTransport protocol implementation.
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs)]
#![warn(missing_docs, clippy::doc_markdown)]

/// I/O and buffer operations.
pub mod bytes;
Expand Down
2 changes: 1 addition & 1 deletion wtransport/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
//! See [repository client example](https://github.com/BiagioFesta/wtransport/blob/master/wtransport/examples/client.rs)
//! for the complete code.
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs)]
#![warn(missing_docs, clippy::doc_markdown)]

/// Client and server configurations.
pub mod config;
Expand Down

0 comments on commit 73dd90d

Please sign in to comment.