aboutsummaryrefslogtreecommitdiff
path: root/docs/tables.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-11-24 16:18:21 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-11-24 16:18:21 -0500
commit1e3fb8a2c0cca385d65c52679411b118b5fb4641 (patch)
treee8e7ae5b4a8b4f39ed867c238f1a05494b6a50ac /docs/tables.md
parent0e10313d64f54dd587ebbcd5f413bd999333c911 (diff)
Rename "NULL" to "NONE"
Diffstat (limited to 'docs/tables.md')
-rw-r--r--docs/tables.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tables.md b/docs/tables.md
index 6a6c7004..6cbe859c 100644
--- a/docs/tables.md
+++ b/docs/tables.md
@@ -50,7 +50,7 @@ was found or error if it wasn't:
>> t:get("x")
= 1 : Int?
>> t:get("????")
-= NULL : Int?
+= NONE : Int?
>> t:get("x")!
= 1
```
@@ -190,7 +190,7 @@ The value associated with the key or null if the key is not found.
= 1 : Int?
>> t:get("????")
-= NULL : Int?
+= NONE : Int?
>> t:get("A")!
= 1 : Int