aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/locale.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/locale.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/locale.lux b/stdlib/source/library/lux/locale.lux
index 381938c74..e77e88c89 100644
--- a/stdlib/source/library/lux/locale.lux
+++ b/stdlib/source/library/lux/locale.lux
@@ -26,10 +26,10 @@
(:abstraction (format (language.code language)
(|> territory
(maybe\map (|>> territory.long_code (format ..territory_separator)))
- (maybe.default ""))
+ (maybe.else ""))
(|> encoding
(maybe\map (|>> encoding.name (format ..encoding_separator)))
- (maybe.default "")))))
+ (maybe.else "")))))
(def: #export code
(-> Locale Text)