Skip to content

Commit fd143db

Browse files
committed
clippy: warn on doc_markdown
1 parent b1dd3d3 commit fd143db

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ cloned_instead_of_copied = "warn"
6565
copy_iterator = "warn"
6666
default_trait_access = "warn"
6767
doc_link_with_quotes = "warn"
68-
doc_markdown = "allow"
68+
doc_markdown = "warn"
6969
empty_enum = "warn"
7070
enum_glob_use = "allow"
7171
expl_impl_clone_on_copy = "warn"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ macro_rules! impl_eq_hash {
238238
/// the initial budget. The budget prevents the generated structure from becoming too deep, which
239239
/// could cause issues in the code that processes these structures.
240240
///
241-
/// https://github.com/rust-fuzz/arbitrary/issues/78
241+
/// <https://github.com/rust-fuzz/arbitrary/issues/78>
242242
#[cfg(feature = "arbitrary")]
243243
trait ArbitraryRec: Sized {
244244
/// Generate a recursive structure from unstructured data.

0 commit comments

Comments
 (0)