aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/repository
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/repository')
-rw-r--r--stdlib/source/program/aedifex/repository/identity.lux8
-rw-r--r--stdlib/source/program/aedifex/repository/local.lux14
-rw-r--r--stdlib/source/program/aedifex/repository/origin.lux8
-rw-r--r--stdlib/source/program/aedifex/repository/remote.lux30
4 files changed, 30 insertions, 30 deletions
diff --git a/stdlib/source/program/aedifex/repository/identity.lux b/stdlib/source/program/aedifex/repository/identity.lux
index c4b974664..06df89360 100644
--- a/stdlib/source/program/aedifex/repository/identity.lux
+++ b/stdlib/source/program/aedifex/repository/identity.lux
@@ -1,13 +1,13 @@
(.module:
[library
- [lux #*
- ["." ffi (#+ import:)]
+ [lux "*"
+ ["." ffi {"+" [import:]}]
[abstract
- [equivalence (#+ Equivalence)]]
+ [equivalence {"+" [Equivalence]}]]
[data
["." product]
["." text
- ["%" format (#+ format)]
+ ["%" format {"+" [format]}]
[encoding
["." utf8]]]]]])
diff --git a/stdlib/source/program/aedifex/repository/local.lux b/stdlib/source/program/aedifex/repository/local.lux
index 907610233..d10296714 100644
--- a/stdlib/source/program/aedifex/repository/local.lux
+++ b/stdlib/source/program/aedifex/repository/local.lux
@@ -1,22 +1,22 @@
(.module:
[library
- [lux #*
+ [lux "*"
[abstract
- [monad (#+ do)]]
+ [monad {"+" [do]}]]
[control
["." try]
[concurrency
- ["." async (#+ Async)]]]
+ ["." async {"+" [Async]}]]]
[data
["." text
- ["%" format (#+ format)]]]
+ ["%" format {"+" [format]}]]]
[world
- [program (#+ Program)]
+ [program {"+" [Program]}]
["." file]
[net
- ["." uri (#+ URI)]]]]]
+ ["." uri {"+" [URI]}]]]]]
["." //
- ["/#" // #_
+ ["/#" // "_"
["#." local]
["#." metadata]]])
diff --git a/stdlib/source/program/aedifex/repository/origin.lux b/stdlib/source/program/aedifex/repository/origin.lux
index 845592762..fdee108c5 100644
--- a/stdlib/source/program/aedifex/repository/origin.lux
+++ b/stdlib/source/program/aedifex/repository/origin.lux
@@ -1,14 +1,14 @@
(.module:
[library
- [lux #*
+ [lux "*"
[abstract
- [equivalence (#+ Equivalence)]]
+ [equivalence {"+" [Equivalence]}]]
[data
["." sum]
["." text]]
[world
- [file (#+ Path)]
- [net (#+ URL)]]]])
+ [file {"+" [Path]}]
+ [net {"+" [URL]}]]]])
(type: .public Origin
(Variant
diff --git a/stdlib/source/program/aedifex/repository/remote.lux b/stdlib/source/program/aedifex/repository/remote.lux
index af9613db7..00ac66517 100644
--- a/stdlib/source/program/aedifex/repository/remote.lux
+++ b/stdlib/source/program/aedifex/repository/remote.lux
@@ -1,34 +1,34 @@
(.module:
[library
- [lux #*
+ [lux "*"
[abstract
- [monad (#+ do)]]
+ [monad {"+" [do]}]]
[control
- ["." io (#+ IO)]
- ["." try (#+ Try)]
- ["." exception (#+ exception:)]]
+ ["." io {"+" [IO]}]
+ ["." try {"+" [Try]}]
+ ["." exception {"+" [exception:]}]]
[data
["." product]
[text
- ["%" format (#+ format)]]]
+ ["%" format {"+" [format]}]]]
[tool
[compiler
["." version]
- ["." language #_
- ["#/." lux #_
+ ["." language "_"
+ ["#/." lux "_"
["#" version]]]]]
[world
- [net (#+ URL)
- [uri (#+ URI)]
- ["." http #_
+ [net {"+" [URL]}
+ [uri {"+" [URI]}]
+ ["." http "_"
["#" client]
["#/." status]
["@#" /]]]]]]
["." //
- ["#." identity (#+ Identity)]
- ["/#" // #_
- ["#." artifact (#+ Version Artifact)
- [extension (#+ Extension)]]]])
+ ["#." identity {"+" [Identity]}]
+ ["/#" // "_"
+ ["#." artifact {"+" [Version Artifact]}
+ [extension {"+" [Extension]}]]]])
(type: .public Address
URL)