aboutsummaryrefslogtreecommitdiff
path: root/docs/paths.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/paths.md
parent90573ba7a15bb47a11c1eb6f69ed04c01b69724d (diff)
Add `NULL` as a syntax for null values.
Diffstat (limited to 'docs/paths.md')
-rw-r--r--docs/paths.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/paths.md b/docs/paths.md
index 86ec2f26..b2dfe384 100644
--- a/docs/paths.md
+++ b/docs/paths.md
@@ -492,10 +492,10 @@ raised.
**Example:**
```tomo
>> (./hello.txt):read()
-= "Hello"?
+= "Hello" : Text?
>> (./nosuchfile.xxx):read()
-= !Text
+= NULL : Text?
```
---
@@ -521,10 +521,10 @@ returned.
**Example:**
```tomo
>> (./hello.txt):read()
-= [72[B], 101[B], 108[B], 108[B], 111[B]]?
+= [72[B], 101[B], 108[B], 108[B], 111[B]] : [Byte]?
>> (./nosuchfile.xxx):read()
-= ![Byte]
+= NULL : [Byte]?
```
---