aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/macro/syntax/common/writer.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/macro/syntax/common/writer.lux')
-rw-r--r--stdlib/source/lux/macro/syntax/common/writer.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/lux/macro/syntax/common/writer.lux b/stdlib/source/lux/macro/syntax/common/writer.lux
index 1a75e7309..d5ad8cb61 100644
--- a/stdlib/source/lux/macro/syntax/common/writer.lux
+++ b/stdlib/source/lux/macro/syntax/common/writer.lux
@@ -1,4 +1,4 @@
-(;module: {#;doc "Commons syntax writers."}
+(.module: {#.doc "Commons syntax writers."}
lux
(lux (data (coll [list "L/" Functor<List>])
[product])
@@ -9,16 +9,16 @@
(def: #export (export ?el)
(-> (Maybe Export) (List Code))
(case ?el
- #;None
+ #.None
(list)
- (#;Some #//;Exported)
+ (#.Some #//.Exported)
(list (' #export))
- (#;Some #//;Hidden)
+ (#.Some #//.Hidden)
(list (' #hidden))))
## Annotations
(def: #export (annotations anns)
(-> Annotations Code)
- (|> anns (L/map (product;both code;tag id)) code;record))
+ (|> anns (L/map (product.both code.tag id)) code.record))