aboutsummaryrefslogtreecommitdiff
path: root/docs/nums.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-11-21 13:00:53 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-11-21 13:00:53 -0500
commitf868d02b08688c04509d1abda5af89a182033d88 (patch)
treeaf64c48127e0edfebb348edabbccbcc402d2070b /docs/nums.md
parent90573ba7a15bb47a11c1eb6f69ed04c01b69724d (diff)
Add `NULL` as a syntax for null values.
Diffstat (limited to 'docs/nums.md')
-rw-r--r--docs/nums.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/nums.md b/docs/nums.md
index c7171f37..0b55f71e 100644
--- a/docs/nums.md
+++ b/docs/nums.md
@@ -583,7 +583,8 @@ func parse(text: Text -> Num?)
- `text`: The text containing the number.
**Returns:**
-The number represented by the text or a null value if the entire text can't be parsed as a number.
+The number represented by the text or `NULL` if the entire text can't be parsed
+as a number.
**Example:**
```tomo