aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/concurrency/actor.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/concurrency/actor.lux')
-rw-r--r--stdlib/source/lux/concurrency/actor.lux20
1 files changed, 11 insertions, 9 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux
index cb35b0706..971bbe01e 100644
--- a/stdlib/source/lux/concurrency/actor.lux
+++ b/stdlib/source/lux/concurrency/actor.lux
@@ -3,14 +3,16 @@
[control monad
["p" parser]
["ex" exception (#+ exception:)]]
- [io (#- run) ("io/" Monad<IO>)]
+ ["." io (#- run) ("io/" Monad<IO>)]
[data
- [product]
+ ["." product]
["e" error]
- text/format
- [collection [list ("list/" Monoid<List> Monad<List> Fold<List>)]]]
- [macro (#+ with-gensyms Monad<Meta>)
- [code]
+ [text
+ format]
+ [collection
+ ["." list ("list/" Monoid<List> Monad<List> Fold<List>)]]]
+ ["." macro (#+ with-gensyms Monad<Meta>)
+ ["." code]
["s" syntax (#+ syntax: Syntax)]
[syntax
["cs" common]
@@ -20,9 +22,9 @@
[type
abstract]]
[//
- [atom (#+ Atom atom)]
- [promise (#+ Promise promise) ("promise/" Monad<Promise>)]
- [task (#+ Task)]])
+ ["." atom (#+ Atom atom)]
+ ["." promise (#+ Promise promise) ("promise/" Monad<Promise>)]
+ ["." task (#+ Task)]])
(exception: #export poisoned)