diff options
author | Matthew Baulch <baulch.matt@gmail.com> | 2016-07-18 21:42:47 +1000 |
---|---|---|
committer | Matthew Baulch <baulch.matt@gmail.com> | 2016-07-18 21:42:47 +1000 |
commit | 50d6c0ae85f307f3c511e9c8c44d522478d1dc25 (patch) | |
tree | 1ebab2ce10d12690ea9a8f5ce70bd38db5676524 /lib/pure | |
parent | 2ac21261b4ab0ed134b380060ab2fc7c978003d3 (diff) | |
download | Nim-50d6c0ae85f307f3c511e9c8c44d522478d1dc25.tar.gz |
Random module: fix links, improve header.
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/random.nim | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/pure/random.nim b/lib/pure/random.nim index c73f403eb..08da771dc 100644 --- a/lib/pure/random.nim +++ b/lib/pure/random.nim @@ -7,11 +7,10 @@ # distribution, for details about the copyright. # -##[Nim's standard random number generator. Based on - -| `http://xoroshiro.di.unimi.it/`_ -| `http://xoroshiro.di.unimi.it/xoroshiro128plus.c`_ -]## +## Nim's standard random number generator. Based on the ``xoroshiro128+`` (xor/rotate/shift/rotate) library. +## * More information: http://xoroshiro.di.unimi.it/ +## * C implementation: http://xoroshiro.di.unimi.it/xoroshiro128plus.c +## include "system/inclrtl" {.push debugger:off.} |