Fix for text uppercasing in test

This commit is contained in:
Bruce Hill 2025-03-07 16:55:48 -05:00
parent 60e971ff7a
commit 9b485be020

View File

@ -23,7 +23,7 @@ func main():
>> add_100(5)
= 105
>> shout2 := suffix_fn(Text.upper, "!")
>> shout2 := suffix_fn(func(t:Text): t:upper(), "!")
>> shout2("hello")
= "HELLO!"