aboutsummaryrefslogtreecommitdiff
path: root/docs/rng.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-05 00:22:40 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-03-05 00:22:40 -0500
commitdba2d62d15d8233c189a109f97d7cda70fa7f6b7 (patch)
treee30d17414553a45f006a6a5d6f05dcd2856ee386 /docs/rng.md
parent0a3ad8ba914ab42ebbb88a3d955f71d71d581fc1 (diff)
Fix links
Diffstat (limited to 'docs/rng.md')
-rw-r--r--docs/rng.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/rng.md b/docs/rng.md
index 306f2015..58807ae9 100644
--- a/docs/rng.md
+++ b/docs/rng.md
@@ -19,14 +19,14 @@ This documentation provides details on RNG functions available in the API.
[Arrays](arrays.md) also have some methods which use RNG values:
`array:shuffle()`, `array:shuffled()`, `array:random()`, and `array:sample()`.
-- [`func bool(rng: RNG, p: Num = 0.5 -> Bool)`](#`bool)
-- [`func byte(rng: RNG -> Byte)`](#`byte)
-- [`func bytes(rng: RNG, count: Int -> [Byte])`](#`bytes)
-- [`func copy(rng: RNG -> RNG)`](#`copy)
-- [`func int(rng: RNG, min: Int, max: Int -> Int)`](#`int`, `int64`, `int32`, `int16`, `int8)
-- [`func new(seed: [Byte] = (/dev/urandom):read_bytes(40)! -> RNG)`](#`new)
-- [`func num(rng: RNG, min: Num = 0.0, max: Num = 1.0 -> Int)`](#`num`, `num32)
-- [`func set_seed(rng: RNG, seed: [Byte])`](#`set_seed)
+- [`func bool(rng: RNG, p: Num = 0.5 -> Bool)`](#bool)
+- [`func byte(rng: RNG -> Byte)`](#byte)
+- [`func bytes(rng: RNG, count: Int -> [Byte])`](#bytes)
+- [`func copy(rng: RNG -> RNG)`](#copy)
+- [`func int(rng: RNG, min: Int, max: Int -> Int)`](#int`, `int64`, `int32`, `int16`, `int8)
+- [`func new(seed: [Byte] = (/dev/urandom):read_bytes(40)! -> RNG)`](#new)
+- [`func num(rng: RNG, min: Num = 0.0, max: Num = 1.0 -> Int)`](#num`, `num32)
+- [`func set_seed(rng: RNG, seed: [Byte])`](#set_seed)
### `bool`