aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-30 20:47:38 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-30 20:47:38 -0400
commitc66946435bc76ed705278dd756eb1abfc41c2e34 (patch)
treef4a842a9c3f1eb5b55bd9c4fa7a61ac382c693bb /test
parentcd7db542748d4ae8262e2fcb4a71c94c87ebf0e7 (diff)
Update wording to remove 'null'
Diffstat (limited to 'test')
-rw-r--r--test/optionals.tm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/optionals.tm b/test/optionals.tm
index 50e700f1..8e075855 100644
--- a/test/optionals.tm
+++ b/test/optionals.tm
@@ -75,10 +75,10 @@ func main()
>> 5? or -1
= 5
- >> 5? or fail("Non-null is falsey")
+ >> 5? or fail("Non-none is falsey")
= 5
- >> 5? or exit("Non-null is falsey")
+ >> 5? or exit("Non-none is falsey")
= 5
>> none_int : Int? = none