From 77b1b1b3ef2b53de47249565e06530a766abf80d Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 10 May 2026 16:45:35 +0100 Subject: [PATCH] Update prng documentation --- prng/Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prng/Home.md b/prng/Home.md index 633f36f..570f818 100644 --- a/prng/Home.md +++ b/prng/Home.md @@ -47,4 +47,4 @@ u64 r2 = wapp_prng_xorshift_256ss(&state); // high quality (BigCrush) u64 r3 = wapp_prng_xorshift_256p(&state); // high quality (BigCrush) ``` -> The `_256ss` and `_256p` variants provide better statistical quality and pass the BigCrush test suite. The standard `_256` variant is faster but has known statistical weaknesses. +> ℹ️ The `_256ss` and `_256p` variants provide better statistical quality and pass the BigCrush test suite. The standard `_256` variant is faster but has known statistical weaknesses.