aboutsummaryrefslogtreecommitdiff
path: root/docs/paths.md
diff options
context:
space:
mode:
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]?
```
---