File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,23 +19,23 @@ use core::slice;
19
19
20
20
/// An implementation of SipHash 1-3.
21
21
///
22
- /// See: https://131002.net/siphash/
22
+ /// See: < https://131002.net/siphash/>
23
23
#[ derive( Debug , Clone , Copy , Default ) ]
24
24
pub struct SipHasher13 {
25
25
hasher : Hasher < Sip13Rounds > ,
26
26
}
27
27
28
28
/// An implementation of SipHash 2-4.
29
29
///
30
- /// See: https://131002.net/siphash/
30
+ /// See: < https://131002.net/siphash/>
31
31
#[ derive( Debug , Clone , Copy , Default ) ]
32
32
pub struct SipHasher24 {
33
33
hasher : Hasher < Sip24Rounds > ,
34
34
}
35
35
36
36
/// An implementation of SipHash 2-4.
37
37
///
38
- /// See: https://131002.net/siphash/
38
+ /// See: < https://131002.net/siphash/>
39
39
///
40
40
/// SipHash is a general-purpose hashing function: it runs at a good
41
41
/// speed (competitive with Spooky and City) and permits strong _keyed_
You can’t perform that action at this time.
0 commit comments