diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-07-18 17:47:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-18 17:47:23 +0200 |
commit | 71cee2b648f76d94fb280e2e0b4639e021949caf (patch) | |
tree | 09380ced2d04c4eb8a915ddf2db18c3fe2fcb466 /lib/pure | |
parent | 267855f9fb41ee1fbbce9fc6cfa2e637d6e0ff93 (diff) | |
parent | 50d6c0ae85f307f3c511e9c8c44d522478d1dc25 (diff) | |
download | Nim-71cee2b648f76d94fb280e2e0b4639e021949caf.tar.gz |
Merge pull request #4498 from mbaulch/fix4388
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.} |