Skip to content

Commit 75d817e

Browse files
newAMeldruin
authored andcommitted
treewide: fix clippy::doc_markdown
1 parent 8c367b4 commit 75d817e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
//!
2727
//! This crate provides implementations of the following 32-bit hashing algorithms:
2828
//!
29-
//! - [Fowler-Noll-Vo](struct.FnvHasher.html)
30-
//! - [MurmurHash3](struct.Murmur3Hasher.html)
29+
//! - [`FnvHasher`] Fowler-Noll-Vo 1a
30+
//! - [`Murmur3Hasher`] `MurmurHash3`
3131
//!
3232
//! # Generic code
3333
//!
@@ -48,7 +48,7 @@
4848
4949
#![deny(missing_docs)]
5050
#![deny(warnings)]
51-
#![warn(clippy::use_self)]
51+
#![warn(clippy::use_self, clippy::doc_markdown)]
5252
#![no_std]
5353

5454
use core::fmt;

src/murmur3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use core::slice;
33

44
use crate::Hasher as _;
55

6-
/// 32-bit MurmurHash3 hasher
6+
/// 32-bit `MurmurHash3` hasher
77
pub struct Hasher {
88
buf: Buffer,
99
index: Index,

0 commit comments

Comments
 (0)