diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-12-07 16:04:25 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-12-07 16:04:25 -0500 |
| commit | 37f3e91f6c95d46f161dbde05b0a005fe7e7c17a (patch) | |
| tree | c6e080ebbe7aed267b8ca0c5aec80fece51a5f65 /stdlib | |
| parent | a201939a8150bc4c2f221925797ea2751c74b77c (diff) | |
Rename "NONE" to "none"
Diffstat (limited to 'stdlib')
| -rw-r--r-- | stdlib/optionals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/optionals.c b/stdlib/optionals.c index 38cd4700..ccda980a 100644 --- a/stdlib/optionals.c +++ b/stdlib/optionals.c @@ -53,7 +53,7 @@ public Text_t Optional$as_text(const void *obj, bool colorize, const TypeInfo_t return Text$concat(generic_as_text(obj, colorize, type->OptionalInfo.type), Text("?")); if (is_none(obj, type->OptionalInfo.type)) - return colorize ? Text("\x1b[31mNONE\x1b[m") : Text("NONE"); + return colorize ? Text("\x1b[31mnone\x1b[m") : Text("none"); return generic_as_text(obj, colorize, type->OptionalInfo.type); } |
