aboutsummaryrefslogtreecommitdiff
path: root/docs/tables.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-16 16:06:19 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-16 16:06:19 -0400
commitde49bc5bb3198f450cb367085f9def0d89782258 (patch)
treea81354271bd3de567a7656807416cd5c69e4b08b /docs/tables.md
parent821bde156c222c7384c67517d773dc14a03342e7 (diff)
Deprecate :or_else()/:or_fail()/:or_exit() in favor of the `or` operator
Diffstat (limited to 'docs/tables.md')
-rw-r--r--docs/tables.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tables.md b/docs/tables.md
index 9de07b67..f589eb2e 100644
--- a/docs/tables.md
+++ b/docs/tables.md
@@ -195,7 +195,7 @@ The value associated with the key or null if the key is not found.
>> t:get("A")!
= 1 : Int
->> t:get("????"):or_else(0)
+>> t:get("????") or 0
= 0 : Int
```