summaryrefslogtreecommitdiff
path: root/src/stream_map.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream_map.rs')
-rw-r--r--src/stream_map.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stream_map.rs b/src/stream_map.rs
index 85b60cf..7fc136f 100644
--- a/src/stream_map.rs
+++ b/src/stream_map.rs
@@ -605,10 +605,10 @@ mod rand {
/// Fast random number generate
///
/// Implement xorshift64+: 2 32-bit xorshift sequences added together.
- /// Shift triplet [17,7,16] was calculated as indicated in Marsaglia's
- /// Xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf
+ /// Shift triplet `[17,7,16]` was calculated as indicated in Marsaglia's
+ /// Xorshift paper: <https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf>
/// This generator passes the SmallCrush suite, part of TestU01 framework:
- /// http://simul.iro.umontreal.ca/testu01/tu01.html
+ /// <http://simul.iro.umontreal.ca/testu01/tu01.html>
#[derive(Debug)]
pub(crate) struct FastRand {
one: Cell<u32>,