aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/name.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/data/name.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux/data/name.lux b/stdlib/source/library/lux/data/name.lux
index cd4b3b67d..1cc1d321c 100644
--- a/stdlib/source/library/lux/data/name.lux
+++ b/stdlib/source/library/lux/data/name.lux
@@ -14,7 +14,7 @@
## [Text Text])
(template [<name> <doc>]
- [(def: #export (<name> name)
+ [(def: .public (<name> name)
{#.doc (doc <doc>)}
(-> Name Text)
(let [[module short] name]
@@ -24,15 +24,15 @@
[short "The short part of a name."]
)
-(def: #export hash
+(def: .public hash
(Hash Name)
(product.hash text.hash text.hash))
-(def: #export equivalence
+(def: .public equivalence
(Equivalence Name)
(\ ..hash &equivalence))
-(implementation: #export order
+(implementation: .public order
(Order Name)
(def: &equivalence ..equivalence)
@@ -44,7 +44,7 @@
(def: separator
".")
-(implementation: #export codec
+(implementation: .public codec
(Codec Text Name)
(def: (encode [module short])