From 50d6c0ae85f307f3c511e9c8c44d522478d1dc25 Mon Sep 17 00:00:00 2001 From: Matthew Baulch Date: Mon, 18 Jul 2016 21:42:47 +1000 Subject: [PATCH] Random module: fix links, improve header. --- lib/pure/random.nim | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/pure/random.nim b/lib/pure/random.nim index c73f403eb7..08da771dc4 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.}