aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/locale
diff options
context:
space:
mode:
authorEduardo Julian2020-12-02 06:42:20 -0400
committerEduardo Julian2020-12-02 06:42:20 -0400
commit34e310622bdeb1d0588c0664c0e78cbaa84f837c (patch)
treeeb7c04185b57c781f45d0ccdb955bc9afc2aa8dc /stdlib/source/lux/locale
parent982a19e0c5d57b53f9726b780fec4c18f0787b4f (diff)
Re-named "::" and ":::" macros to "\" and "\\", to be consistent with the convention that only macros that deal with types may start with a colon.
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))))
)