File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 26
26
//!
27
27
//! This crate provides implementations of the following 32-bit hashing algorithms:
28
28
//!
29
- //! - [Fowler-Noll-Vo](struct.FnvHasher.html)
30
- //! - [MurmurHash3](struct. Murmur3Hasher.html)
29
+ //! - [`FnvHasher`] Fowler-Noll-Vo 1a
30
+ //! - [` Murmur3Hasher`] `MurmurHash3`
31
31
//!
32
32
//! # Generic code
33
33
//!
48
48
49
49
#![ deny( missing_docs) ]
50
50
#![ deny( warnings) ]
51
- #![ warn( clippy:: use_self) ]
51
+ #![ warn( clippy:: use_self, clippy :: doc_markdown ) ]
52
52
#![ no_std]
53
53
54
54
use core:: fmt;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ use core::slice;
3
3
4
4
use crate :: Hasher as _;
5
5
6
- /// 32-bit MurmurHash3 hasher
6
+ /// 32-bit ` MurmurHash3` hasher
7
7
pub struct Hasher {
8
8
buf : Buffer ,
9
9
index : Index ,
You can’t perform that action at this time.
0 commit comments