aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/locale
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/locale.lux4
-rw-r--r--stdlib/source/lux/locale/language.lux2
-rw-r--r--stdlib/source/lux/locale/territory.lux2
3 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux/locale.lux b/stdlib/source/lux/locale.lux
index 90d0653df..b8a6b1ec8 100644
--- a/stdlib/source/lux/locale.lux
+++ b/stdlib/source/lux/locale.lux
@@ -38,7 +38,7 @@
(Equivalence Locale)
(def: (= reference sample)
- (:: text.equivalence = (:representation reference) (:representation sample))))
+ (\ text.equivalence = (:representation reference) (:representation sample))))
(structure: #export hash
(Hash Locale)
@@ -48,5 +48,5 @@
(def: hash
(|>> :representation
- (:: text.hash hash))))
+ (\ text.hash hash))))
)
diff --git a/stdlib/source/lux/locale/language.lux b/stdlib/source/lux/locale/language.lux
index 8aeeb1c51..d26581619 100644
--- a/stdlib/source/lux/locale/language.lux
+++ b/stdlib/source/lux/locale/language.lux
@@ -564,5 +564,5 @@
(def: hash
(|>> ..code
- (:: text.hash hash))))
+ (\ text.hash hash))))
)
diff --git a/stdlib/source/lux/locale/territory.lux b/stdlib/source/lux/locale/territory.lux
index fa313c20c..76ecdf965 100644
--- a/stdlib/source/lux/locale/territory.lux
+++ b/stdlib/source/lux/locale/territory.lux
@@ -307,5 +307,5 @@
(def: hash
(|>> :representation
(get@ #long)
- (:: text.hash hash))))
+ (\ text.hash hash))))
)