aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/compositor/import.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-04 12:49:52 -0400
committerEduardo Julian2021-09-04 12:49:52 -0400
commitfc8bebd3b3c5f050ea92e72eecbd9f6df09f28db (patch)
tree24858adac0e67228620b7e9166e3b7335be9fd5a /stdlib/source/program/compositor/import.lux
parent891b1cfc82322f8017f0a4f6b707d6fe52024545 (diff)
De-taggification | part 2
Diffstat (limited to 'stdlib/source/program/compositor/import.lux')
-rw-r--r--stdlib/source/program/compositor/import.lux20
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/program/compositor/import.lux b/stdlib/source/program/compositor/import.lux
index 230b0325e..72bc61d57 100644
--- a/stdlib/source/program/compositor/import.lux
+++ b/stdlib/source/program/compositor/import.lux
@@ -1,21 +1,21 @@
(.module:
[library
- [lux (#- Module)
+ [lux {"-" [Module]}
[abstract
- ["." monad (#+ Monad do)]]
+ ["." monad {"+" [Monad do]}]]
[control
- ["." try (#+ Try)]
- ["." exception (#+ exception:)]
+ ["." try {"+" [Try]}]
+ ["." exception {"+" [exception:]}]
[concurrency
- ["." async (#+ Async) ("#\." monad)]]
+ ["." async {"+" [Async]} ("#\." monad)]]
["<>" parser
["<.>" binary]]]
[data
- [binary (#+ Binary)]
+ [binary {"+" [Binary]}]
["." text
- ["%" format (#+ format)]]
+ ["%" format {"+" [format]}]]
[collection
- ["." dictionary (#+ Dictionary)]
+ ["." dictionary {"+" [Dictionary]}]
["." row]]
[format
["." tar]]]
@@ -23,11 +23,11 @@
[compiler
[meta
[archive
- [descriptor (#+ Module)]]]]]
+ [descriptor {"+" [Module]}]]]]]
[world
["." file]]]]
[//
- [cli (#+ Library)]])
+ [cli {"+" [Library]}]])
(def: Action
(type (All (_ a) (Async (Try a)))))