File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,23 +19,23 @@ use core::slice;
1919
2020/// An implementation of SipHash 1-3.
2121///
22- /// See: https://131002.net/siphash/
22+ /// See: < https://131002.net/siphash/>
2323#[ derive( Debug , Clone , Copy , Default ) ]
2424pub struct SipHasher13 {
2525 hasher : Hasher < Sip13Rounds > ,
2626}
2727
2828/// An implementation of SipHash 2-4.
2929///
30- /// See: https://131002.net/siphash/
30+ /// See: < https://131002.net/siphash/>
3131#[ derive( Debug , Clone , Copy , Default ) ]
3232pub struct SipHasher24 {
3333 hasher : Hasher < Sip24Rounds > ,
3434}
3535
3636/// An implementation of SipHash 2-4.
3737///
38- /// See: https://131002.net/siphash/
38+ /// See: < https://131002.net/siphash/>
3939///
4040/// SipHash is a general-purpose hashing function: it runs at a good
4141/// speed (competitive with Spooky and City) and permits strong _keyed_
You can’t perform that action at this time.
0 commit comments