Skip to content

Commit 3c1c9ad

Browse files
committed
Fix broken links
1 parent 0e949c9 commit 3c1c9ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/prng/isaac.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const RAND_SIZE: usize = 1 << RAND_SIZE_LEN;
8484
/// [3]: Jean-Philippe Aumasson, [*On the pseudo-random generator ISAAC*](
8585
/// https://eprint.iacr.org/2006/438)
8686
///
87-
/// [`Hc128Rng`]: prng/hc128/struct.Hc128Rng.html
87+
/// [`Hc128Rng`]: hc128/struct.Hc128Rng.html
8888
#[cfg_attr(feature="serde-1", derive(Serialize,Deserialize))]
8989
pub struct IsaacRng {
9090
#[cfg_attr(feature="serde-1",serde(with="super::isaac_serde::rand_size_serde"))]

src/prng/isaac64.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ const RAND_SIZE: usize = 1 << RAND_SIZE_LEN;
7373
/// [1]: Bob Jenkins, [*ISAAC and RC4*](
7474
/// http://burtleburtle.net/bob/rand/isaac.html)
7575
///
76-
/// [`IsaacRng`]: prng/isaac/struct.IsaacRng.html
77-
/// [`Hc128Rng`]: prng/hc128/struct.Hc128Rng.html
76+
/// [`IsaacRng`]: ../isaac/struct.IsaacRng.html
77+
/// [`Hc128Rng`]: hc128/struct.Hc128Rng.html
7878
#[cfg_attr(feature="serde-1", derive(Serialize,Deserialize))]
7979
pub struct Isaac64Rng {
8080
#[cfg_attr(feature="serde-1",serde(with="super::isaac_serde::rand_size_serde"))]

0 commit comments

Comments
 (0)