aboutsummaryrefslogtreecommitdiff
path: root/docs/bytes.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-10-09 13:48:45 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-10-09 13:48:45 -0400
commit5a80ff0db3690943a522e38152c86393ab0eb594 (patch)
treee9acbe040b9216dc456b8d7f99852a42800ff998 /docs/bytes.md
parent63d48e9febf2aa65de4cfd40489b05cbcdfd463a (diff)
Update docs to standardize function signature formatting
Diffstat (limited to 'docs/bytes.md')
-rw-r--r--docs/bytes.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/bytes.md b/docs/bytes.md
index 579db9db..eb733424 100644
--- a/docs/bytes.md
+++ b/docs/bytes.md
@@ -14,9 +14,9 @@ integer with a `[B]` suffix, e.g. `255[B]`.
**Description:**
Generates a random byte value in the specified range.
-**Usage:**
+**Signature:**
```tomo
-random(min: Byte = Byte.min, max: Byte = Byte.max -> Byte)
+func random(min: Byte = Byte.min, max: Byte = Byte.max -> Byte)
```
**Parameters:**