Skip to content

Commit c3bc304

Browse files
committed
Make links in documentation work with commonmark
This fixes formatting problems when the Markdown processor is switched to pulldown-cmark (rust-lang/rust#44229).
1 parent 098e57b commit c3bc304

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sip.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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)]
2424
pub 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)]
3232
pub 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_

0 commit comments

Comments
 (0)