aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/locale.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/locale.lux')
-rw-r--r--stdlib/source/lux/locale.lux4
1 files changed, 2 insertions, 2 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))))
)