aboutsummaryrefslogtreecommitdiff
path: root/docs/bytes.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-10-09 13:26:28 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-10-09 13:26:28 -0400
commit074cf22ad462eafe963e4a749b2b74cab51211a1 (patch)
treee1d7f938f2d949cc5dcf67ca648f200663e36562 /docs/bytes.md
parent47fca946065508cff4151a32b3008c161983fd9d (diff)
Change function syntax from `func(args)->ret` to `func(args -> ret)`
Diffstat (limited to 'docs/bytes.md')
-rw-r--r--docs/bytes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/bytes.md b/docs/bytes.md
index 36180428..579db9db 100644
--- a/docs/bytes.md
+++ b/docs/bytes.md
@@ -16,7 +16,7 @@ Generates a random byte value in the specified range.
**Usage:**
```tomo
-random(min: Byte = Byte.min, max: Byte = Byte.max) -> Byte
+random(min: Byte = Byte.min, max: Byte = Byte.max -> Byte)
```
**Parameters:**