From 37f3e91f6c95d46f161dbde05b0a005fe7e7c17a Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 7 Dec 2024 16:04:25 -0500 Subject: Rename "NONE" to "none" --- examples/learnxiny.tm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/learnxiny.tm') diff --git a/examples/learnxiny.tm b/examples/learnxiny.tm index af7a55f6..5315b034 100644 --- a/examples/learnxiny.tm +++ b/examples/learnxiny.tm @@ -108,17 +108,17 @@ func main(): >> table["two"] = 2 : Int? - # The value returned is optional because NONE will be returned if the key + # The value returned is optional because none will be returned if the key # is not in the table: >> table["xxx"]! - = NONE : Int? + = none : Int? # Optional values can be converted to regular values using `!` (which will # create a runtime error if the value is null): >> table["two"]! = 2 : Int - # You can also use `or` to provide a fallback value to replace NONE: + # You can also use `or` to provide a fallback value to replace none: >> table["xxx"] or 0 = 0 : Int -- cgit v1.2.3