aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/locale/territory.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/locale/territory.lux')
-rw-r--r--stdlib/source/library/lux/locale/territory.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/library/lux/locale/territory.lux b/stdlib/source/library/lux/locale/territory.lux
index 8df6f861d..dcbf207e7 100644
--- a/stdlib/source/library/lux/locale/territory.lux
+++ b/stdlib/source/library/lux/locale/territory.lux
@@ -7,7 +7,7 @@
[data
["[0]" text]]
[type
- abstract]
+ [abstract {"-" pattern}]]
[macro
["[0]" template]]]])
@@ -22,7 +22,7 @@
(template [<name> <field> <type>]
[(def: .public <name>
(-> Territory <type>)
- (|>> :representation
+ (|>> representation
(the <field>)))]
[name #name Text]
@@ -34,10 +34,10 @@
(template [<short> <long> <number> <name> <main> <neighbor>+]
[(def: .public <main>
Territory
- (:abstraction [#name <name>
- #short <short>
- #long <long>
- #code <number>]))
+ (abstraction [#name <name>
+ #short <short>
+ #long <long>
+ #code <number>]))
(`` (template [<neighbor>]
[(def: .public <neighbor> Territory <main>)]
@@ -307,7 +307,7 @@
(def: &equivalence ..equivalence)
(def: hash
- (|>> :representation
+ (|>> representation
(the #long)
(# text.hash hash))))
)